📄 salarymanagement.h
字号:
// SalaryManagement.h : main header file for the SALARYMANAGEMENT application
//
#if !defined(AFX_SALARYMANAGEMENT_H__D7A4BB2E_4FD2_46EA_85BB_516CACE61EED__INCLUDED_)
#define AFX_SALARYMANAGEMENT_H__D7A4BB2E_4FD2_46EA_85BB_516CACE61EED__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
//inculde类的声明
#include "DataBase.h"
#include "Department.h"
#include "Employee.h"
#include "InitialisitionDlg.h"
#include "LoginDlg.h"
#include "MainDlg.h"
#include "PersonnelAddDlg.h"
#include "PersonnelDlg.h"
#include "SalaryManagement.h"
#include "SellamountDlg.h"
#include "SalarySetDlg.h"
#include "SalaryTableDlg.h"
#include "ModifyPasswordDlg.h"
#include "ModifyPasswordSubDlg.h"
#include "AwardDlg.h"
#include "SalaryRecordsDlg.h"
//外部变量
extern CDepartment A_Department; //A部门
extern CDepartment B_Department; //B部门
extern CDepartment C_Department; //C部门
extern CDepartment NULL_Department; //Root指向的
extern CDepartment *pDepartment; //在程序中使用部门信息的指针
extern CString Initial; //得到要操作的部门的首字母
extern CDataBase database; //连接到数据库的对象
/////////////////////////////////////////////////////////////////////////////
// CSalaryManagementApp:
// See SalaryManagement.cpp for the implementation of this class
//
class CSalaryManagementApp : public CWinApp
{
public:
CSalaryManagementApp();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSalaryManagementApp)
public:
virtual BOOL InitInstance();
//}}AFX_VIRTUAL
// Implementation
//{{AFX_MSG(CSalaryManagementApp)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SALARYMANAGEMENT_H__D7A4BB2E_4FD2_46EA_85BB_516CACE61EED__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -