blob: c60adc93ba9c84ab455493067919d51c7dbe3d5a (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef T2DLL_T2TOOLCALLBACK_H
#define T2DLL_T2TOOLCALLBACK_H
#include "../common.h"
class AFX_CLASS_EXPORT T2ToolCallback {
public:
virtual void toolCallback_vf00(T2ToolWindow *inToolWindow, T2ToolIconItem *inItem) = 0;
};
#endif
|