RAMSES Documentation  27.0.130
Information for RAMSES users and developers
RamsesVersion.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2020 BMW AG
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_RAMSESVERSION_H
10 #define RAMSES_RAMSESVERSION_H
11 
13 
14 namespace ramses
15 {
20  {
22  const char *const string;
23 
25  int major;
27  int minor;
29  int patch;
30  };
31 
37 }
38 
39 #endif
#define RAMSES_API
Definition: APIExport.h:35
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15
RAMSES_API RamsesVersion GetRamsesVersion()
Retrieve currently used ramses version information.
Ramses version information.
Definition: RamsesVersion.h:20
const char *const string
Version information as string in format major.minor.patch with an optional arbitrary suffix.
Definition: RamsesVersion.h:22
int patch
Patch version.
Definition: RamsesVersion.h:29
int minor
Minor version.
Definition: RamsesVersion.h:27
int major
Major version.
Definition: RamsesVersion.h:25