|
||||
File indexing completed on 2025-01-18 09:54:42
0001 #ifndef CLHEP_VERSION_H 0002 #define CLHEP_VERSION_H 1 0003 // 0004 // ClhepVersion.h 0005 // 0006 // Sample Usage: 0007 // std::string version = CLHEP::Version::String() 0008 // int mjr = CLHEP::Version::Major(); 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 } // namespace 0026 0027 #endif // CLHEP_VERSION_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |