CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/CommonTools/Utils/src/MethodStack.h

Go to the documentation of this file.
00001 #ifndef CommonTools_Utils_MethodStack_h
00002 #define CommonTools_Utils_MethodStack_h
00003 /* \class reco::parser::MethodStack
00004  *
00005  * Stack of reflex methods
00006  *
00007  * \author  Luca Lista, INFN
00008  *
00009  * \version $Revision: 1.2 $
00010  *
00011  */
00012 #include "CommonTools/Utils/src/MethodInvoker.h"
00013 #include <vector>
00014 
00015 namespace reco {
00016   namespace parser {
00017     typedef std::vector<MethodInvoker> MethodStack;
00018     typedef std::vector<LazyInvoker>   LazyMethodStack;
00019   }
00020 }
00021 
00022 #endif