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
6#include <memory>
7#include <vector>
8
9namespace mslang {
10 struct Intersection: public Function {
13
15 { }
16
21
22 virtual ~Intersection() {
23 delete firstOperand_m;
24 delete secondOperand_m;
25 }
26
27 virtual void print(int indentwidth);
28 virtual void apply(std::vector<std::shared_ptr<Base> > &bfuncs);
29 static bool parse_detail(iterator &it, const iterator &end, Function* &fun);
30 };
31}
32
33#endif
PartBunchBase< T, Dim >::ConstIterator end(PartBunchBase< T, Dim > const &bunch)
std::string::iterator iterator
Definition MSLang.h:13
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
Function * firstOperand_m