?? baseconfigfile.h
字號:
// BaseConfigFile.h: interface for the CBaseConfigFile class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BASECONFIGFILE_H__F0631E84_0CBD_4A5D_A0C4_B124C0B33B8D__INCLUDED_)
#define AFX_BASECONFIGFILE_H__F0631E84_0CBD_4A5D_A0C4_B124C0B33B8D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CBaseConfigFile : public CObject
{
public:
CString getPartition();
CString getFilePath();
CString getSeqNO();
CBaseConfigFile();
CBaseConfigFile(CString seqNO,CString partion,CString filePath);
virtual ~CBaseConfigFile();
protected:
CString m_partition;
CString m_seqNO;
CString m_filePath;
};
#endif // !defined(AFX_BASECONFIGFILE_H__F0631E84_0CBD_4A5D_A0C4_B124C0B33B8D__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -