git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4950 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
749 B
C++
29 lines
749 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: minifram.cpp
|
|
// Purpose: wxMiniFrame. Optional; identical to wxFrame if not supported.
|
|
// Author: David Webster
|
|
// Modified by:
|
|
// Created: 10/10/99
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) David Webster
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#include "wx/window.h"
|
|
#include "wx/os2/private.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/setup.h"
|
|
#include "wx/event.h"
|
|
#include "wx/app.h"
|
|
#include "wx/utils.h"
|
|
#endif
|
|
|
|
#include "wx/minifram.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame)
|
|
|