source: abuse/branches/win32/LispEditor/LispEditorDoc.h @ 608

Last change on this file since 608 was 100, checked in by Sam Hocevar, 15 years ago
  • Importing an old Win32 port by Jeremy "Marauder" Scott.
  • Property svn:keywords set to Id
File size: 1.7 KB
RevLine 
[100]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
13class CLispEditorDoc : public CRichEditDoc
14{
15protected: // create from serialization only
16        CLispEditorDoc();
17        DECLARE_DYNCREATE(CLispEditorDoc)
18
19// Attributes
20public:
21
22// Operations
23public:
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
37public:
38        virtual ~CLispEditorDoc();
39#ifdef _DEBUG
40        virtual void AssertValid() const;
41        virtual void Dump(CDumpContext& dc) const;
42#endif
43
44protected:
45
46// Generated message map functions
47protected:
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_)
Note: See TracBrowser for help on using the repository browser.