leocad/common/lc_global.h

32 lines
568 B
C
Raw Normal View History

#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 79
#define LC_VERSION_PATCH 2
#define LC_VERSION_TEXT "0.79.2"
// Check for supported platforms.
#if !defined(LC_WINDOWS) && !defined(LC_LINUX)
#error No OS defined.
#endif
2012-03-23 00:44:56 +01:00
// Forward declarations.
2012-10-16 02:43:52 +02:00
class lcVector2;
2012-04-14 01:41:58 +02:00
class lcVector3;
class lcVector4;
class lcMatrix44;
2012-04-14 01:41:58 +02:00
class lcMesh;
2012-10-16 02:43:52 +02:00
class lcTexture;
2012-04-14 01:41:58 +02:00
2012-03-23 00:44:56 +01:00
class lcFile;
class lcMemFile;
class lcDiskFile;
#endif // _LC_GLOBAL_H_