1 #ifndef __MS_PLUGIN_IMPL_H__
2 #define __MS_PLUGIN_IMPL_H__
3 
4 
5 
6 #include "msPlugIn.h"
7 
8 
9 
10 struct msModel;
11 class cPlugIn : public cMsPlugIn
12 {
13     char szTitle[64];
14 
15 public:
16 	cPlugIn ();
17     virtual ~cPlugIn ();
18 
19 public:
20     int             GetType ();
21     const char *    GetTitle ();
22     int             Execute (msModel* pModel);
23 };
24 
25 
26 
27 #endif // __MS_PLUGIN_IMPL_H__