mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-04 21:00:42 +08:00
14 lines
265 B
C++
14 lines
265 B
C++
#include "Plater.hpp"
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
Plater::Plater(wxWindow* parent, const wxString& title) :
|
|
wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, title) { }
|
|
void Plater::add() {
|
|
|
|
}
|
|
|
|
|
|
}} // Namespace Slic3r::GUI
|
|
|