OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
SymmetricDifference.h
Go to the documentation of this file.
1 #ifndef MSLANG_SYMMETRICDIFFERENCE_H
2 #define MSLANG_SYMMETRICDIFFERENCE_H
3 
4 #include "Utilities/MSLang.h"
5 
6 namespace mslang {
7  struct SymmetricDifference: public Function {
10 
12  { }
13 
17  { }
18 
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 void apply(std::vector< std::shared_ptr< Base > > &bfuncs)
static bool parse_detail(iterator &it, const iterator &end, Function *&fun)
SymmetricDifference(const SymmetricDifference &right)
virtual void print(int indentwidth)
std::string::iterator iterator
Definition: MSLang.h:16