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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = control_T.h
  3. //
  4. #ifndef _CONTROL_T_H_
  5. #define _CONTROL_T_H_
  6. #include "genctl.h"
  7. #include <iostream>
  8. #include <fstream>
  9. template< class T >
  10. class Control : public GenericControl
  11. {
  12. public:
  13.   Control<T>( char* name, PracSimModel *model );
  14.   Control<T>( char* name );
  15.   ~Control<T>(void);
  16.   T GetValue(void);
  17.   void SetValue(T value);
  18. //  void Dump(ofstream);
  19. private:
  20.   T Cntrl_Value;
  21.   
  22. };
  23. #endif //_CONTROL_T_H_