openspades/Sources/Core/VersionInfo.h
Tomoaki Kawada 624d291f79 Update #includes
- Reorder them so that system libraries come first
- Use C++-style headers (`<cmath>`) instead of C-style headers (`<math.h>`)
2016-12-03 19:04:58 +09:00

9 lines
105 B
C++

#pragma once
#include <string>
class VersionInfo {
public:
static std::string GetVersionInfo();
};