1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef CommonTools_Utils_MethodStack_h
#define CommonTools_Utils_MethodStack_h
/* \class reco::parser::MethodStack
*
* Stack of methods
*
* \author Luca Lista, INFN
*
*/
#include "CommonTools/Utils/interface/parser/MethodInvoker.h"
#include <vector>
namespace reco {
namespace parser {
typedef std::vector<MethodInvoker> MethodStack;
typedef std::vector<LazyInvoker> LazyMethodStack;
} // namespace parser
} // namespace reco
#endif // CommonTools_Utils_MethodStack_h
|