CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_6/src/CommonTools/Utils/src/ComparisonStack.h

Go to the documentation of this file.
00001 #ifndef Parser_ComparisonStack_h
00002 #define Parser_ComparisonStack_h
00003 /* \class reco::parser::ComparisonStack
00004  *
00005  * Comparison stack
00006  *
00007  * \author original version: Chris Jones, Cornell, 
00008  *         adapted to Reflex by Luca Lista, INFN
00009  *
00010  * \version $Revision: 1.1 $
00011  *
00012  */
00013 #include <boost/shared_ptr.hpp>
00014 #include <vector>
00015 
00016 namespace reco {
00017   namespace parser {
00018     class ComparisonBase;
00019     typedef std::vector<boost::shared_ptr<ComparisonBase> > ComparisonStack;
00020   }
00021 }
00022 
00023 #endif