Program Listing for File version.h

Return to documentation for file (include/flamegpu/version.h)

#ifndef INCLUDE_FLAMEGPU_VERSION_H_
#define INCLUDE_FLAMEGPU_VERSION_H_

#define FLAMEGPU_VERSION 2000000

namespace flamegpu {
static constexpr unsigned int VERSION = FLAMEGPU_VERSION;
static constexpr unsigned int VERSION_MAJOR = flamegpu::VERSION / 1000000;
static constexpr unsigned int VERSION_MINOR = flamegpu::VERSION / 1000 % 1000;
static constexpr unsigned int VERSION_PATCH = flamegpu::VERSION % 1000;

static constexpr char VERSION_PRERELEASE[] = "rc.1";

extern const char VERSION_BUILDMETADATA[];

extern const char VERSION_STRING[];

extern const char VERSION_FULL[];

extern const char TELEMETRY_RANDOM_ID[];

}  // namespace flamegpu

#endif  // INCLUDE_FLAMEGPU_VERSION_H_