Warning, file /include/CLHEP/ClhepVersion.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef CLHEP_VERSION_H
0002 #define CLHEP_VERSION_H 1
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <string>
0012
0013 namespace CLHEP {
0014
0015 struct Version {
0016
0017 static std::string String() { return "2.4.6.4"; }
0018 static int Major() { return 2; }
0019 static int SubMajor() { return 4; }
0020 static int Minor() { return 6; }
0021 static int SubMinor() { return 4; }
0022
0023 };
0024
0025 }
0026
0027 #endif