1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef CommonTools_Utils_MethodArgumentStack_h
#define CommonTools_Utils_MethodArgumentStack_h
/* \class reco::parser::MethodArgumentStack
*
* Stack of method arguments
*
* \author Giovanni Petrucciani, SNS
*
*/
#include "CommonTools/Utils/interface/parser/MethodInvoker.h"
#include <vector>
namespace reco {
namespace parser {
typedef std::vector<AnyMethodArgument> MethodArgumentStack;
} // namespace parser
} // namespace reco
#endif // CommonTools_Utils_MethodArgumentStack_h
|