1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef CommonTools_Utils_MethodChainSetter_h
#define CommonTools_Utils_MethodChainSetter_h
/* \class reco::parser::MethodChainSetter
*
* Method Chain setter, used to construct MethodChain when parsing with boost::spirit
*
*/
#include "CommonTools/Utils/interface/parser/MethodChain.h"
#include "CommonTools/Utils/interface/parser/MethodStack.h"
#include "CommonTools/Utils/interface/parser/TypeStack.h"
#include <iostream>
namespace reco {
namespace parser {
struct MethodChainSetter {
MethodChainSetter(MethodChainPtr &methchain,
MethodStack &methStack,
LazyMethodStack &lazyMethStack,
TypeStack &typeStack)
: methchain_(methchain), methStack_(methStack), lazyMethStack_(lazyMethStack), typeStack_(typeStack) {}
void operator()(const char *, const char *) const;
private:
void push(const char *, const char *) const;
void lazyPush(const char *, const char *) const;
MethodChainPtr &methchain_;
MethodStack &methStack_;
LazyMethodStack &lazyMethStack_;
TypeStack &typeStack_;
};
} // namespace parser
} // namespace reco
#endif
|