diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2016-02-19 23:45:06 +0100 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2016-02-19 23:45:06 +0100 |
| commit | a64c92fb2513ddf3187772e220c87153476f8a1f (patch) | |
| tree | 2163060a4233a7c95e7f0cdece74f758bc5aba58 | |
| parent | b01190a0b9cd0077a946bc016966e0621551eecf (diff) | |
| download | qt-config-a64c92fb2513ddf3187772e220c87153476f8a1f.tar.gz qt-config-a64c92fb2513ddf3187772e220c87153476f8a1f.zip | |
Add type alias for ConfigValues-Map
| -rw-r--r-- | ConfigBase.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ConfigBase.hpp b/ConfigBase.hpp index a31e66b..d1e0ef5 100644 --- a/ConfigBase.hpp +++ b/ConfigBase.hpp @@ -42,6 +42,8 @@ public: static QString getStringValue(Type val); }; +using ConfigValues = QMap<QString, ConfigValueBase*>; + template<typename Type, typename = void> class ConfigValue : public ConfigValueBase { public: |
