Jpp
JLang/JNumber.hh
Go to the documentation of this file.
1 #ifndef __JLANG__JNUMBER__
2 #define __JLANG__JNUMBER__
3 
4 /**
5  * \author mdejong
6  */
7 
8 namespace JLANG {}
9 namespace JPP { using namespace JLANG; }
10 
11 namespace JLANG {
12 
13 
14  /**
15  * Wrapper class for integer value.
16  */
17  template<int N>
18  struct JNumber {
19  static const int value = N;
20  };
21 }
22 
23 #endif
JLANG::JNumber::value
static const int value
Definition: JLang/JNumber.hh:19
JPP
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JAAnetToolkit.hh:37
JLANG::JNumber
Wrapper class for integer value.
Definition: JLang/JNumber.hh:18
JLANG
Auxiliary classes and methods for language specific functionality.
Definition: JAbstractClass.hh:10