moved settings initialization into cpp files

This commit is contained in:
AdenKoperczak 2024-09-19 11:34:41 -04:00
parent c92b881d4a
commit 97b5b6f4ca
3 changed files with 21 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#define SETTINGS_CONTAINER_IMPLEMENTATION
//#define SETTINGS_CONTAINER_IMPLEMENTATION
#include <scwx/qt/settings/settings_container.hpp>
#include <scwx/util/logger.hpp>
@ -172,6 +172,8 @@ bool SettingsContainer<Container>::Equals(const SettingsVariableBase& o) const
p->elementMaximum_ == v.p->elementMaximum_;
}
template class SettingsContainer<std::vector<std::int64_t>>;
} // namespace settings
} // namespace qt
} // namespace scwx