Stroika Library 3.0d18
 
Loading...
Searching...
No Matches
LedLineItDocFrame.h
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#ifndef __LedLineItDocFrame_h__
5#define __LedLineItDocFrame_h__ 1
6
7#include "Stroika/Frameworks/StroikaPreComp.h"
8
9DISABLE_COMPILER_MSC_WARNING_START (4459)
10#include <afxwin.h>
11DISABLE_COMPILER_MSC_WARNING_END (4459)
12
13#include "Stroika/Frameworks/Led/Support.h"
14
15#include "LedLineItConfig.h"
16
17class LedLineItDocFrame : public CMDIChildWnd {
18private:
19 using inherited = CMDIChildWnd;
20
21public:
22 LedLineItDocFrame ();
23
24protected:
25 DECLARE_DYNCREATE (LedLineItDocFrame)
26
27public:
28 afx_msg int OnCreate (LPCREATESTRUCT lpCreateStruct);
29
30protected:
31 DECLARE_MESSAGE_MAP ()
32};
33
34/*
35 ********************************************************************************
36 ***************************** Implementation Details ***************************
37 ********************************************************************************
38 */
39inline LedLineItDocFrame::LedLineItDocFrame ()
40 : inherited ()
41{
42}
43
44#endif /*__LedLineItDocFrame_h__*/