CDATA.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // cdata.h :
- //
- #if !defined(__CDATA_H__)
- #define __CDATA_H__
- #include "idata.h"
- class CMyStruct : public tagIMyStruct
- {
- public:
- CMyStruct() { m_str = NULL; }
- virtual ~CMyStruct() { if (m_str) ::SysFreeString(m_str); }
- // Operations
- public:
- void Format(CString& str)
- {
- str.Format(_T("{%i, %.4f, %s}"), m_int, m_float, (LPCTSTR) (CString) m_str);
- }
- };
- class CMyObject : public CObject, public CMyStruct
- {
- DECLARE_SERIAL(CMyObject)
- public:
- CMyObject() {}
- virtual ~CMyObject() {}
- // Implementation
- public:
- virtual void Serialize(CArchive& ar);
- };
- #endif // __CDATA_H__
- /////////////////////////////////////////////////////////////////////////////