Start filling the Print's Tab, using @lordofhyphens's Optionsgroup

This commit is contained in:
YuSanka 2017-12-13 14:45:10 +01:00
parent c5e21c1fbf
commit d60fac42d6
11 changed files with 1000 additions and 482 deletions

View file

@ -0,0 +1,15 @@
#include <exception>
namespace Slic3r {
class ConfigError : public std::runtime_error {
using std::runtime_error::runtime_error;
};
namespace GUI {
class ConfigGUITypeError : public ConfigError {
using ConfigError::ConfigError;
};
}
}