MyLang
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
myparser_pass_filter.hpp
Go to the documentation of this file.
1 #ifndef MYPARSER_PASS_FILTER_HPP
2 #define MYPARSER_PASS_FILTER_HPP
3 
4 #include "myparser_pass.hpp"
5 
6 namespace myparser {
7 
8 template <>
9 class Pass<PASS_FILTER>: public PassProto<PASS_FILTER> {
10 public:
11  inline Pass() {}
12 
13  // virtual ~Pass() {}
14 
15  template <class N, class T>
16  void run(const NodeTypedProto<N, T> *node) {
17  // TODO
18  (void) node;
19  }
20 };
21 
22 }
23 
24 #endif
Pass()
Definition: myparser_pass_filter.hpp:11
Definition: myparser_common.hpp:81
void run(const NodeTypedProto< N, T > *node)
Definition: myparser_pass_filter.hpp:16
Definition: myparser_pass.hpp:24
Definition: myparser_common.hpp:92