diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-28 16:30:52 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-28 16:30:52 +0200 |
| commit | 6edd9e7a12a3827fb6aac62a88be01085e41e176 (patch) | |
| tree | 4513475c7efaea92a154ff20e970ed3d4b475b7c /src/identitycollection.hpp | |
| parent | a53e490d2e96d22a24293019921af26e00f2bf7a (diff) | |
| download | kristall-6edd9e7a12a3827fb6aac62a88be01085e41e176.tar.gz | |
Huge refacoring of the settings stuff. Provides automated migration between old and new configuration file stuff. Themes are now just files in a folder instead of encoded data in the config file.
Diffstat (limited to 'src/identitycollection.hpp')
| -rw-r--r-- | src/identitycollection.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/identitycollection.hpp b/src/identitycollection.hpp index 82d48a6..0aaac09 100644 --- a/src/identitycollection.hpp +++ b/src/identitycollection.hpp @@ -46,6 +46,11 @@ class IdentityCollection : public QAbstractItemModel public: explicit IdentityCollection(QObject *parent = nullptr); + IdentityCollection(IdentityCollection const & other); + + IdentityCollection & operator=(IdentityCollection const &); + IdentityCollection & operator=(IdentityCollection &&); + public: void load(QSettings & settings); |
