📄 pin.h
字号:
// Pin.h: interface for the CPin class.
//
//////////////////////////////////////////////////////////////////////
#define PIN_NA 0
#define PIN_IN 1
#define PIN_OUT 2
#define PIN_BUFFER 3
#define PIN_INOUT 4
#define PIN_LINKAGE 5
class CPin
{
public:
int nCtrlCell;
int nOutCell;
int nInCell;
char * TypeName(void);
int nAssigned;
int error;
int nType;
void Oe(int enable);
int nAct;
void Write(int dt);
int Read(void);
int *pInCell;
int *pOutCell;
int *pCtrlCell;
CPin(CString strInitName = CString(""));
CString strNumber;
CString strName;
virtual ~CPin();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -