1 | // LispEditorDoc.h : interface of the CLispEditorDoc class
|
---|
2 | //
|
---|
3 | /////////////////////////////////////////////////////////////////////////////
|
---|
4 |
|
---|
5 | #if !defined(AFX_LISPEDITORDOC_H__9F73AF5D_7EE6_4A07_B8C2_FA78349759FD__INCLUDED_)
|
---|
6 | #define AFX_LISPEDITORDOC_H__9F73AF5D_7EE6_4A07_B8C2_FA78349759FD__INCLUDED_
|
---|
7 |
|
---|
8 | #if _MSC_VER > 1000
|
---|
9 | #pragma once
|
---|
10 | #endif // _MSC_VER > 1000
|
---|
11 |
|
---|
12 |
|
---|
13 | class CLispEditorDoc : public CRichEditDoc
|
---|
14 | {
|
---|
15 | protected: // create from serialization only
|
---|
16 | CLispEditorDoc();
|
---|
17 | DECLARE_DYNCREATE(CLispEditorDoc)
|
---|
18 |
|
---|
19 | // Attributes
|
---|
20 | public:
|
---|
21 |
|
---|
22 | // Operations
|
---|
23 | public:
|
---|
24 |
|
---|
25 | // Overrides
|
---|
26 | // ClassWizard generated virtual function overrides
|
---|
27 | //{{AFX_VIRTUAL(CLispEditorDoc)
|
---|
28 | public:
|
---|
29 | virtual BOOL OnNewDocument();
|
---|
30 | virtual void Serialize(CArchive& ar);
|
---|
31 | virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
|
---|
32 | virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
|
---|
33 | //}}AFX_VIRTUAL
|
---|
34 | virtual CRichEditCntrItem* CreateClientItem(REOBJECT* preo) const;
|
---|
35 |
|
---|
36 | // Implementation
|
---|
37 | public:
|
---|
38 | virtual ~CLispEditorDoc();
|
---|
39 | #ifdef _DEBUG
|
---|
40 | virtual void AssertValid() const;
|
---|
41 | virtual void Dump(CDumpContext& dc) const;
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | protected:
|
---|
45 |
|
---|
46 | // Generated message map functions
|
---|
47 | protected:
|
---|
48 | //{{AFX_MSG(CLispEditorDoc)
|
---|
49 | // NOTE - the ClassWizard will add and remove member functions here.
|
---|
50 | // DO NOT EDIT what you see in these blocks of generated code !
|
---|
51 | //}}AFX_MSG
|
---|
52 | DECLARE_MESSAGE_MAP()
|
---|
53 | };
|
---|
54 |
|
---|
55 | /////////////////////////////////////////////////////////////////////////////
|
---|
56 |
|
---|
57 | //{{AFX_INSERT_LOCATION}}
|
---|
58 | // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
---|
59 |
|
---|
60 | #endif // !defined(AFX_LISPEDITORDOC_H__9F73AF5D_7EE6_4A07_B8C2_FA78349759FD__INCLUDED_)
|
---|