?? commfunc.h
字號:
// CommFunc.h: interface for the CCommFunc class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMMFUNC_H__B136614D_7578_4CCD_B869_3BF347B74F3E__INCLUDED_)
#define AFX_COMMFUNC_H__B136614D_7578_4CCD_B869_3BF347B74F3E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define DEF_DBLBACKLASH "\\"
class CCommFunc
{
public:
//CString GetLocalIP();
CCommFunc();
virtual ~CCommFunc();
CString GetCurrentPath();
CString GetExecutePath();
BOOL IsDirExist(CString szFileName);
BOOL IsFileExist(CString szFileName);
int GetDateRange(CString szDayStart, CString szDayEnd, double &dblSecond);
BOOL SplitString(CString szSplittedString, CStringArray *paArray, CString szSplitMask);
BOOL SplitString(CString szSplittedString, CStringArray &aArray, CString szSplitMask);
private:
CString m_szCurrentPath;
CString m_szExecutePath;
};
extern CCommFunc g_CommFunc;
#endif // !defined(AFX_COMMFUNC_H__B136614D_7578_4CCD_B869_3BF347B74F3E__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -