mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-02-16 12:45:26 +01:00
26 lines
668 B
C++
26 lines
668 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: minifram.cpp
|
|
// Purpose: wxMiniFrame
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 04/01/98
|
|
// RCS-ID: $Id: minifram.cpp 49299 2007-10-21 18:07:29Z PC $
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_MINIFRAME
|
|
|
|
#include "wx/minifram.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame)
|
|
|
|
#endif // wxUSE_MINIFRAME
|