CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MethodStack.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_MethodStack_h
2 #define CommonTools_Utils_MethodStack_h
3 /* \class reco::parser::MethodStack
4  *
5  * Stack of methods
6  *
7  * \author Luca Lista, INFN
8  *
9  * \version $Revision: 1.3 $
10  *
11  */
13 #include <vector>
14 
15 namespace reco {
16  namespace parser {
17  typedef std::vector<MethodInvoker> MethodStack;
18  typedef std::vector<LazyInvoker> LazyMethodStack;
19  }
20 }
21 
22 #endif
std::vector< LazyInvoker > LazyMethodStack
Definition: MethodStack.h:18
std::vector< MethodInvoker > MethodStack
Definition: MethodStack.h:17