43 lines
784 B
C++
43 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:
|
|
|
|
// Ü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
|