home *** CD-ROM | disk | FTP | other *** search
- // SrvrItem.h : interface of the CDoServerSrvrItem class
- //
-
- #include "BINDITEM.H" // DocObject addition
-
- class CDoServerSrvrItem : public CDocObjectServerItem // DocObject modification
- {
- DECLARE_DYNAMIC(CDoServerSrvrItem)
-
- // Constructors
- public:
- CDoServerSrvrItem(CDoServerDoc* pContainerDoc);
-
- // Attributes
- CDoServerDoc* GetDocument() const
- { return (CDoServerDoc*)COleServerItem::GetDocument(); }
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CDoServerSrvrItem)
- public:
- virtual BOOL OnDraw(CDC* pDC, CSize& rSize);
- virtual BOOL OnGetExtent(DVASPECT dwDrawAspect, CSize& rSize);
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- ~CDoServerSrvrItem();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
- virtual void Serialize(CArchive& ar); // overridden for document i/o
- };
-
- /////////////////////////////////////////////////////////////////////////////
-