Files
GDevelop/IDE/CompilationChecker.h
T
Florian 17a4a17651 Corrected bad copy of events.
Corrected deletion of objects in debugger
Corrected deselection of sub instructions
Added error messages.
Removed dependence to legacy AppelEvent.h file

git-svn-id: svn://localhost@101 8062f311-0dae-4547-b526-b8ab9ac864a5
2010-04-29 18:15:53 +00:00

18 lines
457 B
C++

#ifndef COMPILATIONCHECKER_H
#define COMPILATIONCHECKER_H
/**
* Class used to ensure that the IDE is compiled and runned with the same version of GDL
*/
class CompilationChecker
{
public:
/**
* Return false if the IDE wasn't compiled for the current version of GDL, and display
* an error message in the console.
*/
static bool EnsureCorrectGDLVersion();
};
#endif // COMPILATIONCHECKER_H