mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-08 00:56:33 +08:00
16 lines
354 B
C++
16 lines
354 B
C++
#ifndef CONTROLLER_UI_HPP
|
|
#define CONTROLLER_UI_HPP
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
class Controller : public wxPanel {
|
|
public:
|
|
Controller(wxWindow* parent, const wxString& title) :
|
|
wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, title)
|
|
{ }
|
|
};
|
|
|
|
}} // Namespace Slic3r::GUI
|
|
|
|
#endif // CONTROLLER_UI_HPP
|