📄 recordtypes.h
字号:
#ifndef RECORDTYPES_H#define RECORDTYPES_H#include <map>#include <string>#include <vector>#include <iostream>using namespace std;#define MAX_RECORD_TYPE 2/// Supported Record types// If you change this you need to update the constants in Record as well !enum RecordType{ GENERIC_REC = 0, TEST_REC = 1, UPDATE_REG_INFO_REC = 2};typedef string KeyType;typedef vector<KeyType> KeyList;// Callback function prototype typedeftypedef void(*callBackFuncPtr)(RecordType, KeyType);#endif // DBTYPES_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -