home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / common / msdev98 / bin / ide / mfcapwz.dll / TEMPLATE / SRVRITEM.H < prev    next >
C/C++ Source or Header  |  1998-06-18  |  1KB  |  49 lines

  1. // $$srvritem_hfile$$.h : interface of the $$SRVRITEM_CLASS$$ class
  2. //
  3.  
  4. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  5. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. class $$SRVRITEM_CLASS$$ : public $$SRVRITEM_BASE_CLASS$$
  12. {
  13.     DECLARE_DYNAMIC($$SRVRITEM_CLASS$$)
  14.  
  15. // Constructors
  16. public:
  17.     $$SRVRITEM_CLASS$$($$DOC_CLASS$$* pContainerDoc);
  18.  
  19. // Attributes
  20.     $$DOC_CLASS$$* GetDocument() const
  21.         { return ($$DOC_CLASS$$*)$$SRVRITEM_BASE_CLASS$$::GetDocument(); }
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL($$SRVRITEM_CLASS$$)
  26.     public:
  27.     virtual BOOL OnDraw(CDC* pDC, CSize& rSize);
  28.     virtual BOOL OnGetExtent(DVASPECT dwDrawAspect, CSize& rSize);
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     ~$$SRVRITEM_CLASS$$();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39. protected:
  40.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  41. };
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.  
  45. //{{AFX_INSERT_LOCATION}}
  46. // $$INSERT_LOCATION_COMMENT$$
  47.  
  48. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  49.