Slic3r/src/GUI/Dialogs/PrinterEditor.cpp
2018-07-11 22:14:51 -05:00

20 lines
489 B
C++

#include "Dialogs/PresetEditor.hpp"
namespace Slic3r { namespace GUI {
PrinterEditor::PrinterEditor(wxWindow* parent, t_config_option_keys options) :
PresetEditor(parent, options) {
this->config = Slic3r::Config::new_from_defaults(this->my_options());
this->_update_tree();
this->load_presets();
this->_update();
this->_build();
}
void PrinterEditor::_update(const std::string& opt_key) {
}
void PrinterEditor::_build() {
}
}} // namespace Slic3r::GUI