diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-07-24 23:44:00 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-07-24 23:44:00 +0200 |
commit | 97cf08f964ceebf4cb98b46f473bf952007a8a21 (patch) | |
tree | 5fcc5c482c2803c7f8e91132cff2818272fcdfc4 /libmultimc/include/fullversion.h | |
parent | 18853ca3fa185f5fe5288a1d0c8ed6cf8c678007 (diff) | |
download | MultiMC-97cf08f964ceebf4cb98b46f473bf952007a8a21.tar MultiMC-97cf08f964ceebf4cb98b46f473bf952007a8a21.tar.gz MultiMC-97cf08f964ceebf4cb98b46f473bf952007a8a21.tar.lz MultiMC-97cf08f964ceebf4cb98b46f473bf952007a8a21.tar.xz MultiMC-97cf08f964ceebf4cb98b46f473bf952007a8a21.zip |
Parsing the version files, part II
Diffstat (limited to 'libmultimc/include/fullversion.h')
-rw-r--r-- | libmultimc/include/fullversion.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libmultimc/include/fullversion.h b/libmultimc/include/fullversion.h index b1de02a3..523ac87c 100644 --- a/libmultimc/include/fullversion.h +++ b/libmultimc/include/fullversion.h @@ -1,6 +1,7 @@ #pragma once #include <QString> -#include <QStringList> + +class Library; class FullVersion { @@ -40,7 +41,7 @@ public: QString mainClass; // the list of libs. just the names for now. expand to full-blown strutures! - QStringList libraries; + QList<QSharedPointer<Library> > libraries; // is this actually a legacy version? if so, none of the other stuff here will be ever used. // added by FullVersionFactory |