You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
432 B
C++
27 lines
432 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件: 完成特定格式的读写操作
|
|
//主要功能:
|
|
//
|
|
//程序编写: 2011-11-16
|
|
//
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "AttachBase.h"
|
|
|
|
namespace NReader
|
|
{
|
|
|
|
class CReaderBase : public CAttachBase
|
|
{
|
|
public:
|
|
CReaderBase(void);
|
|
~CReaderBase(void);
|
|
};
|
|
|
|
}//namespace
|
|
|
|
using namespace NReader;
|
|
|