OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
Intersection.h
Go to the documentation of this file.
1#ifndef MSLANG_INTERSECTION_H
2#define MSLANG_INTERSECTION_H
3
4#include "Utilities/MSLang.h"
5
6namespace mslang {
7 struct Intersection : public Function {
10
12
15
16 virtual ~Intersection() {
17 delete firstOperand_m;
18 delete secondOperand_m;
19 }
20
21 virtual void print(int indentwidth);
22 virtual void apply(std::vector<std::shared_ptr<Base> >& bfuncs);
23 static bool parse_detail(iterator& it, const iterator& end, Function*& fun);
24 };
25} // namespace mslang
26
27#endif
std::string::iterator iterator
Definition MSLang.h:14
static bool parse_detail(iterator &it, const iterator &end, Function *&fun)
virtual void apply(std::vector< std::shared_ptr< Base > > &bfuncs)
Intersection(const Intersection &right)
virtual void print(int indentwidth)
Function * secondOperand_m
Definition Intersection.h:9
Function * firstOperand_m
Definition Intersection.h:8