mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-06 20:06:32 +08:00
22 lines
375 B
C++
22 lines
375 B
C++
#include "Settings.hpp"
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
void Settings::save_settings() {
|
|
/*
|
|
sub save_settings {
|
|
my ($self) = @_;
|
|
Slic3r::Config->write_ini("$datadir/slic3r.ini", $Settings);
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
void Settings::save_window_pos(wxWindow* ref, wxString name) {
|
|
}
|
|
|
|
void Settings::restore_window_pos(wxWindow* ref, wxString name) {
|
|
}
|
|
}} // namespace Slic3r::GUI
|