📄 types.h
字号:
// Types.h: interface for the CTypes class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_TYPES_H__7AF1504C_8699_42D5_9ADA_0DD11E3E60F0__INCLUDED_)
#define AFX_TYPES_H__7AF1504C_8699_42D5_9ADA_0DD11E3E60F0__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CTypes
{
public:
int TypeId;
CString TypeName;
CTypes();
virtual ~CTypes();
// 是否存在指定的类别名称
int HaveName(CString cTypeName);
// 插入新的类别
void sql_Insert();
// 更新类别信息
void sql_Update(CString cTypeId);
// 删除类别
void sql_Delete(CString cTypeId);
};
#endif // !defined(AFX_TYPES_H__7AF1504C_8699_42D5_9ADA_0DD11E3E60F0__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -