source: abuse/branches/win32/LispEditor/CntrItem.cpp

Last change on this file 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.1 KB
Line 
1// CntrItem.cpp : implementation of the CLispEditorCntrItem class
2//
3
4#include "stdafx.h"
5#include "LispEditor.h"
6
7#include "LispEditorDoc.h"
8#include "LispEditorView.h"
9#include "CntrItem.h"
10
11#ifdef _DEBUG
12#define new DEBUG_NEW
13#undef THIS_FILE
14static char THIS_FILE[] = __FILE__;
15#endif
16
17/////////////////////////////////////////////////////////////////////////////
18// CLispEditorCntrItem implementation
19
20IMPLEMENT_SERIAL(CLispEditorCntrItem, CRichEditCntrItem, 0)
21
22CLispEditorCntrItem::CLispEditorCntrItem(REOBJECT* preo, CLispEditorDoc* pContainer)
23        : CRichEditCntrItem(preo, pContainer)
24{
25        // TODO: add one-time construction code here
26       
27}
28
29CLispEditorCntrItem::~CLispEditorCntrItem()
30{
31        // TODO: add cleanup code here
32       
33}
34
35/////////////////////////////////////////////////////////////////////////////
36// CLispEditorCntrItem diagnostics
37
38#ifdef _DEBUG
39void CLispEditorCntrItem::AssertValid() const
40{
41        CRichEditCntrItem::AssertValid();
42}
43
44void CLispEditorCntrItem::Dump(CDumpContext& dc) const
45{
46        CRichEditCntrItem::Dump(dc);
47}
48#endif
49
50/////////////////////////////////////////////////////////////////////////////
Note: See TracBrowser for help on using the repository browser.