mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-06 21:06:33 +08:00
18 lines
255 B
C++
18 lines
255 B
C++
#ifndef PRESET_HPP
|
|
#define PRESET_HPP
|
|
|
|
#include "PrintConfig.hpp"
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
class Preset {
|
|
|
|
private:
|
|
Slic3r::DynamicPrintConfig config { Slic3r::DynamicPrintConfig() };
|
|
|
|
};
|
|
|
|
}} // namespace Slic3r::GUI
|
|
|
|
#endif // PRESET_HPP
|