stubbed in constant for turning on/off threading (mostly to reduce complexity when testing feature code)

This commit is contained in:
Joseph Lenox 2018-05-06 22:43:02 -05:00
parent 19c1811823
commit bc311474a2

View File

@ -45,6 +45,8 @@ constexpr bool isDev = true;
constexpr bool isDev = false; constexpr bool isDev = false;
#endif #endif
constexpr bool threaded = false;
// hopefully the compiler is smart enough to figure this out // hopefully the compiler is smart enough to figure this out
const std::map<const std::string, const std::string> FILE_WILDCARDS { const std::map<const std::string, const std::string> FILE_WILDCARDS {
std::make_pair("known", "Known files (*.stl, *.obj, *.amf, *.xml, *.3mf)|*.3mf;*.3MF;*.stl;*.STL;*.obj;*.OBJ;*.amf;*.AMF;*.xml;*.XML"), std::make_pair("known", "Known files (*.stl, *.obj, *.amf, *.xml, *.3mf)|*.3mf;*.3MF;*.stl;*.STL;*.obj;*.OBJ;*.amf;*.AMF;*.xml;*.XML"),