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.
23 lines
499 B
C++
23 lines
499 B
C++
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//文件 HyperText.h
|
|
//主要功能:
|
|
//
|
|
//程序编写: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "text.h"
|
|
|
|
class CHyperText :
|
|
public CText
|
|
{
|
|
public:
|
|
CHyperText(void);
|
|
virtual ~CHyperText(void);
|
|
|
|
virtual void Serialize(CArchive& ar, const short &ver);
|
|
virtual int Read(CFile& fr, const short& ver);
|
|
virtual void Write(CFile& fw, const short& ver);
|
|
};
|