sc.h
来自「数据库编程」· C头文件 代码 · 共 26 行
H
26 行
// SC.h: interface for the CSC class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SC_H__83372298_A51A_4DA6_8279_AEB29057153D__INCLUDED_)
#define AFX_SC_H__83372298_A51A_4DA6_8279_AEB29057153D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSC
{
public:
CSC();
virtual ~CSC();
void Set(CString x,CString y);
CString GetStudent_id();
CString GetCourse_id();
private:
CString student_id;
CString course_id;
};
#endif // !defined(AFX_SC_H__83372298_A51A_4DA6_8279_AEB29057153D__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?