You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
391 B
C
19 lines
391 B
C
7 months ago
|
#pragma once
|
||
|
#include "module.h"
|
||
|
|
||
|
class CModuleExample :public CModule
|
||
|
{
|
||
|
public:
|
||
|
CModuleExample(void);
|
||
|
~CModuleExample(void);
|
||
|
virtual CMFCPropertyGridProperty *CreatGridProperty();
|
||
|
virtual MODULE GetModuleType(){return _MODULE_NULL;};
|
||
|
virtual CString GetParDirName(){return "ModuleExample";};
|
||
|
|
||
|
private:
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
extern CModuleExample *gModuleExample;
|