ModuleManager.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef MODULEMANAGER_H
00011 #define MODULEMANAGER_H
00012
00013 #include "AppConfig.h"
00014
00015 #if !defined(DEPRECATED_MODULE_TYPE)
00016 #error You must define DEPRECATED_MODULE_TYPE in order to continue using the legacy module type.
00017 #else
00018
00019 #if !(defined(SOLARIS) || defined(WIN_API))
00020 #error Legacy modules (version 1) are not supported on this platform.
00021 #endif
00022
00023 #pragma message(__FILE__ "(" STRING(__LINE__) ") You are using the deprecated method of registering modules and plug-ins. See REGISTER_MODULE and REGISTER_PLUGIN_BASIC for more information.")
00024 #include "PlugInRegistration.h"
00025
00026 #endif
00027
00028 #endif