OPAL (Object Oriented Parallel Accelerator Library) 2022.1
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
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
PartBunchBase< T, Dim >::ConstIterator end(PartBunchBase< T, Dim > const &bunch)
std::string::iterator iterator
Definition: MSLang.h:16
virtual ~Intersection()
Definition: Intersection.h:19
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)
Definition: Intersection.h:14
virtual void print(int indentwidth)
Definition: Intersection.cpp:6
Function * secondOperand_m
Definition: Intersection.h:9
Function * firstOperand_m
Definition: Intersection.h:8