⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseconfigfile.h

📁 演示wince 下如何使用mediaplay 控件播放媒体文件. 程序中还演示了如何解析文本文件
💻 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 + -