diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-11 18:58:24 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-11 19:05:22 +0200 |
commit | 7e78a422e8bb22572706b7fadb58fc45e7b8a7db (patch) | |
tree | e91e2aa3364d1a5cb8329a6b7e49b7a46e720ab5 /backend/NostalgiaInstance.h | |
parent | e5dc113bfceb1e9b52535b7d1abd6f0ec51e1332 (diff) | |
download | PrismLauncher-7e78a422e8bb22572706b7fadb58fc45e7b8a7db.tar.gz PrismLauncher-7e78a422e8bb22572706b7fadb58fc45e7b8a7db.tar.bz2 PrismLauncher-7e78a422e8bb22572706b7fadb58fc45e7b8a7db.zip |
Version filtering and general related code sanitization.
Version list dialog has alternating row background set.
Nostalgia versions, based on OneSix.
Diffstat (limited to 'backend/NostalgiaInstance.h')
-rw-r--r-- | backend/NostalgiaInstance.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/backend/NostalgiaInstance.h b/backend/NostalgiaInstance.h new file mode 100644 index 00000000..7c48713b --- /dev/null +++ b/backend/NostalgiaInstance.h @@ -0,0 +1,10 @@ +#pragma once + +#include "OneSixInstance.h" + +class LIBMULTIMC_EXPORT NostalgiaInstance : public OneSixInstance +{ + Q_OBJECT +public: + explicit NostalgiaInstance(const QString &rootDir, SettingsObject * settings, QObject *parent = 0); +}; |