OpenMD 3.0
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 getFullRevision();
19 std::string getBuildDate();
20 };
21} // namespace OpenMD
22
23#endif
This basic Periodic Table class was originally taken from the data.cpp file in OpenBabel.