OpenMD 3.2
Molecular Dynamics in the Open
Loading...
Searching...
No Matches
Revision.hpp
1#ifndef UTILS_REVISION_HPP
2#define UTILS_REVISION_HPP
3
4#include <string>
5
6extern "C" {
7extern const char version[];
8extern const char revision[];
9extern const char build_date[];
10}
11
12namespace OpenMD {
13
14 class Revision {
15 public:
16 std::string getVersion();
17 std::string getRevision();
18 std::string getHalfRevision();
19 std::string getFullRevision();
20 std::string getBuildDate();
21 };
22} // namespace OpenMD
23
24#endif
This basic Periodic Table class was originally taken from the data.cpp file in OpenBabel.