mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-09-22 04:25:48 +02:00
Delete files and directories that won't be used, and rename the wxWidgets 3.0 directory to reduce confusion when doing maintenance version upgrades.
27 lines
773 B
C++
27 lines
773 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/common/docmdi.cpp
|
|
// Purpose: Frame classes for MDI document/view applications
|
|
// Author: Julian Smart, Vadim Zeitlin
|
|
// Created: 01/02/97
|
|
// Copyright: (c) 1997 Julian Smart
|
|
// (c) 2010 Vadim Zeitlin
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_MDI_ARCHITECTURE
|
|
|
|
#include "wx/docmdi.h"
|
|
|
|
IMPLEMENT_CLASS(wxDocMDIParentFrame, wxMDIParentFrame)
|
|
IMPLEMENT_CLASS(wxDocMDIChildFrame, wxMDIChildFrame)
|
|
|
|
#endif // wxUSE_DOC_VIEW_ARCHITECTURE
|
|
|