CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTConfigCounter.h
Go to the documentation of this file.
1 #ifndef HLTConfigCounter_H
2 #define HLTConfigCounter_H
3 
5 
6  public:
7 
9 
10  long increment() { count_++; return count_; }
11  long decrement() { count_--; return count_; }
12 
13  private:
14 
15  long count_;
16 
17 };
18 
19 #endif