git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49299 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
22 lines
639 B
C++
22 lines
639 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/motif/minifram.cpp
|
|
// Purpose: wxMiniFrame. Optional; identical to wxFrame if not supported.
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 17/09/98
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#if wxUSE_MINIFRAME
|
|
|
|
#include "wx/minifram.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame)
|
|
|
|
#endif // wxUSE_MINIFRAME
|