CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
IntStack.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_IntStack_h
2 #define CommonTools_Utils_IntStack_h
3 /* \class reco::parser::IntStack
4  *
5  * Stack of integers
6  *
7  * \author Luca Lista, INFN
8  *
9  * \version $Revision: 1.1 $
10  *
11  */
12 #include <vector>
13 
14 namespace reco {
15  namespace parser {
16  typedef std::vector<int> IntStack;
17  }
18 }
19 
20 #endif
std::vector< int > IntStack
Definition: IntStack.h:16