OPAL (Object Oriented Parallel Accelerator Library) 2024.2
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
6namespace mslang {
7 struct Intersection: public Function {
10
12 { }
13
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
PartBunchBase< T, Dim >::ConstIterator end(PartBunchBase< T, Dim > const &bunch)
std::string::iterator iterator
Definition MSLang.h:15
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