Stroika Library 3.0d18
 
Loading...
Searching...
No Matches
LedItServerItem.h
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
5#ifndef __LedItServerItem_h__
6#define __LedItServerItem_h__ 1
7
8#include "Stroika/Foundation/StroikaPreComp.h"
9
10class LedItServerItem : public COleServerItem {
11 DECLARE_DYNAMIC (LedItServerItem)
12
13 // Constructors
14public:
15 LedItServerItem (LedItDocument* pContainerDoc);
16
17 // Attributes
18 LedItDocument* GetDocument () const
19 {
20 return (LedItDocument*)COleServerItem::GetDocument ();
21 }
22
23 // Overrides
24 // ClassWizard generated virtual function overrides
25 //{{AFX_VIRTUAL(LedItServerItem)
26public:
27 virtual BOOL OnDraw (CDC* pDC, CSize& rSize);
28 virtual BOOL OnGetExtent (DVASPECT dwDrawAspect, CSize& rSize);
29 //}}AFX_VIRTUAL
30
31 // Implementation
32public:
33 ~LedItServerItem ();
34#ifdef _DEBUG
35 virtual void AssertValid () const;
36 virtual void Dump (CDumpContext& dc) const;
37#endif
38
39protected:
40 virtual void Serialize (CArchive& ar); // overridden for document i/o
41};
42
43#endif /*__LedItServerItem_h__*/