OpenADFortTk (including Open64 and OpenAnalysis references)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ExprTreeSetIterator.hpp
Go to the documentation of this file.
1 #ifndef ExprTreeSetIterator_H
2 #define ExprTreeSetIterator_H
3 
5 
6 namespace OA {
7 
9 public:
10 
12 
14 
15  void operator++();
16 
17  void reset();
18 
19  bool isValid();
20 
22 
23 
24 
25 private:
27  ExprTreeSet::const_iterator mIter;
28 };
29 } //end namespace OA
30 
31 #endif
32 
33