blob: 1e55002dda2beac68164ba60b4b18c8246e35aaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef T2DLL_T2TOOLPLUGIN_H
#define T2DLL_T2TOOLPLUGIN_H
#include "../common.h"
#include "CProgramPlugin.h"
class AFX_CLASS_EXPORT T2ToolPlugin : public CProgramPlugin {
public:
T2ToolPlugin(DWORD type, T2PluginSpecifier& specifier);
virtual ~T2ToolPlugin();
};
#endif
|