1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef CommonTools_Utils_IntStack_h
#define CommonTools_Utils_IntStack_h
/* \class reco::parser::IntStack
*
* Stack of integers
*
* \author Luca Lista, INFN
*
* \version $Revision: 1.1 $
*
*/
#include <vector>
namespace reco {
namespace parser {
typedef std::vector<int> IntStack;
}
} // namespace reco
#endif
|