Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-11-17 20:46:03 +0300
committerbubnikv <bubnikv@gmail.com>2017-11-17 20:46:03 +0300
commit9205c8aab4ac6f39be53e370132fa86b245f6992 (patch)
tree76447be3ba40542da133db00a82208883fa8a7f6 /xs/src/libslic3r/Config.hpp
parent47f193fe2dd78fd1f5d058ade3ff897ce85cfdb8 (diff)
Sketch of the PlaceholderParser if/elsif/else macro.
Diffstat (limited to 'xs/src/libslic3r/Config.hpp')
-rw-r--r--xs/src/libslic3r/Config.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/xs/src/libslic3r/Config.hpp b/xs/src/libslic3r/Config.hpp
index 8b384c9b5..c203f3be2 100644
--- a/xs/src/libslic3r/Config.hpp
+++ b/xs/src/libslic3r/Config.hpp
@@ -82,6 +82,9 @@ public:
bool is_vector() const { return ! this->is_scalar(); }
};
+typedef ConfigOption* ConfigOptionPtr;
+typedef const ConfigOption* ConfigOptionConstPtr;
+
// Value of a single valued option (bool, int, float, string, point, enum)
template <class T>
class ConfigOptionSingle : public ConfigOption {