genctl.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = genctl.h
  3. //
  4. #ifndef _GENCTL_H_
  5. #define _GENCTL_H_
  6. #include "vector"
  7. #include "sigstuff.h"
  8. //#include "psmodel.h"
  9. class PracSimModel;
  10. class GenericControl
  11. {
  12. public:
  13.   GenericControl( char* name, PracSimModel* model );
  14.   ~GenericControl(void);
  15.   char* GetName(void);
  16.   GenericControl* GetId();
  17. protected:
  18.   char* Name;
  19.   PracSimModel* Owning_Model;
  20.   GenericControl* Root_Id;
  21. //  std::vector<GenericSignal*> *Connected_Sigs;
  22.   
  23. };
  24. #endif //_GENCTL_H_