mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-14 14:41:29 +00:00
19 lines
559 B
C++
19 lines
559 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/osx/minifram.cpp
|
|
// Purpose: wxMiniFrame. Optional; identical to wxFrame if not supported.
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 1998-01-01
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#if wxUSE_MINIFRAME
|
|
|
|
#include "wx/minifram.h"
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame, wxFrame)
|
|
|
|
#endif // wxUSE_MINIFRAME
|