44 lines
784 B
C
44 lines
784 B
C
![]() |
// MainFrm.h : Schnittstelle der Klasse CMainFrame
|
|||
|
//
|
|||
|
#ifndef _MAINFRM_H
|
|||
|
#define _MAINFRM_H
|
|||
|
|
|||
|
#pragma once
|
|||
|
class CMainFrame : public CFrameWnd
|
|||
|
{
|
|||
|
|
|||
|
protected: // Nur aus Serialisierung erstellen
|
|||
|
CMainFrame();
|
|||
|
DECLARE_DYNCREATE(CMainFrame)
|
|||
|
|
|||
|
// Attribute
|
|||
|
public:
|
|||
|
|
|||
|
// Operationen
|
|||
|
public:
|
|||
|
|
|||
|
// <20>berschreibungen
|
|||
|
public:
|
|||
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|||
|
|
|||
|
// Implementierung
|
|||
|
public:
|
|||
|
virtual ~CMainFrame();
|
|||
|
#ifdef _DEBUG
|
|||
|
virtual void AssertValid() const;
|
|||
|
virtual void Dump(CDumpContext& dc) const;
|
|||
|
#endif
|
|||
|
|
|||
|
public:
|
|||
|
CStatusBar m_wndStatusBar;
|
|||
|
protected: // Eingebundene Elemente der Steuerleiste
|
|||
|
CToolBar m_wndToolBar;
|
|||
|
|
|||
|
// Generierte Funktionen f<>r die Meldungstabellen
|
|||
|
protected:
|
|||
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
};
|
|||
|
|
|||
|
#endif
|