OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
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 
6 namespace mslang {
7  struct Intersection: public Function {
10 
12  { }
13 
14  Intersection(const Intersection &right):
17  { }
18 
19  virtual ~Intersection() {
20  delete firstOperand_m;
21  delete secondOperand_m;
22  }
23 
24  virtual void print(int indentwidth);
25  virtual void apply(std::vector<std::shared_ptr<Base> > &bfuncs);
26  static bool parse_detail(iterator &it, const iterator &end, Function* &fun);
27  };
28 }
29 
30 #endif
virtual ~Intersection()
Definition: Intersection.h:19
static bool parse_detail(iterator &it, const iterator &end, Function *&fun)
Intersection(const Intersection &right)
Definition: Intersection.h:14
Function * secondOperand_m
Definition: Intersection.h:9
Function * firstOperand_m
Definition: Intersection.h:8
virtual void print(int indentwidth)
Definition: Intersection.cpp:6
std::string::iterator iterator
Definition: MSLang.h:16
virtual void apply(std::vector< std::shared_ptr< Base > > &bfuncs)