OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
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
6namespace mslang {
7 struct SymmetricDifference : public Function {
10
12
15
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
virtual void print(int indentwidth)
SymmetricDifference(const SymmetricDifference &right)
virtual void apply(std::vector< std::shared_ptr< Base > > &bfuncs)
static bool parse_detail(iterator &it, const iterator &end, Function *&fun)