Main Index : Reference :
class BasePlugin
{
public:
BasePlugin();
[int] GetID() = 0;
}
This is the class that all plugin classes are derived from, at least logically. It requires you to specify a unique id for the plugin. You can get such ids at http://www.plugincafe.com for free.
[int] GetID() = 0;
Should return the id of the plugin. Must be overloaded in derived classes.