summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2InfoDialog.h
blob: 4522bafad9d1f14812cf2a3acc6eb83d421c113a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef T2DLL_T2INFODIALOG_H
#define T2DLL_T2INFODIALOG_H
#include "../common.h"
#include "T2Dialog.h"

class AFX_CLASS_EXPORT T2InfoDialog : public T2Dialog {
public:
	T2InfoDialog(T2DrawableObject* object);
	virtual ~T2InfoDialog();
protected:
	virtual void GetCommentString(unsigned int, CString&) const;

	T2DrawableObject *mObject;
};
#endif