blob: 70463d2fafb90902fe9aec6e7ece0b2b55c99841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef STAR_VERSION_HPP
#define STAR_VERSION_HPP
#include "StarConfig.hpp"
namespace Star {
extern char const* const StarVersionString;
extern char const* const StarSourceIdentifierString;
extern char const* const StarArchitectureString;
typedef uint32_t VersionNumber;
}
#endif
|