Go to the documentation of this file.00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef __MYGUI_PLUGIN_H__
00024 #define __MYGUI_PLUGIN_H__
00025
00026 #include "MyGUI_Prerequest.h"
00027 #include "MyGUI_Common.h"
00028
00029 namespace MyGUI
00030 {
00031
00034 class MYGUI_EXPORT IPlugin
00035 {
00036 public:
00037 IPlugin() { }
00038
00039 virtual ~IPlugin() { }
00040
00045 virtual const std::string& getName() const = 0;
00046
00049 virtual void install() = 0;
00050
00054 virtual void initialize() = 0;
00055
00058 virtual void shutdown() = 0;
00059
00062 virtual void uninstall() = 0;
00063 };
00064
00065 }
00066
00067 #endif // __MYGUI_PLUGIN_H__