mirror of
https://github.com/leozide/leocad
synced 2024-12-28 22:23:35 +01:00
31 lines
504 B
C++
31 lines
504 B
C++
#ifndef _LC_GLOBAL_H_
|
|
#define _LC_GLOBAL_H_
|
|
|
|
#include "lc_config.h"
|
|
#include "defines.h"
|
|
|
|
// Version number.
|
|
#define LC_VERSION_MAJOR 0
|
|
#define LC_VERSION_MINOR 80
|
|
#define LC_VERSION_PATCH 0
|
|
#define LC_VERSION_TEXT "0.80.0"
|
|
|
|
// Check for supported platforms.
|
|
#ifndef LC_QT
|
|
#error No OS defined.
|
|
#endif
|
|
|
|
// Forward declarations.
|
|
class lcVector2;
|
|
class lcVector3;
|
|
class lcVector4;
|
|
class lcMatrix44;
|
|
|
|
class lcMesh;
|
|
class lcTexture;
|
|
|
|
class lcFile;
|
|
class lcMemFile;
|
|
class lcDiskFile;
|
|
|
|
#endif // _LC_GLOBAL_H_
|