home *** CD-ROM | disk | FTP | other *** search
- // memodoc.h : interface of the CMemoDoc class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CMemoDoc : public CDocument
- {
- protected: // create from serialization only
- CMemoDoc();
- DECLARE_DYNCREATE(CMemoDoc)
-
- // Attributes
- public:
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- CString m_Date;
- CString m_Ref;
- CString m_From;
- CString m_To;
- CString m_Memo;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMemoDoc();
- virtual void Serialize(CArchive& ar); // overridden for document i/o
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
- virtual BOOL OnNewDocument();
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMemoDoc)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-