?? control_t.h
字號:
//
// File = control_T.h
//
#ifndef _CONTROL_T_H_
#define _CONTROL_T_H_
#include "genctl.h"
#include <iostream>
#include <fstream>
template< class T >
class Control : public GenericControl
{
public:
Control<T>( char* name, PracSimModel *model );
Control<T>( char* name );
~Control<T>(void);
T GetValue(void);
void SetValue(T value);
// void Dump(ofstream);
private:
T Cntrl_Value;
};
#endif //_CONTROL_T_H_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -