GH-2124 First complete implementation, installing is working now! GH-2172 Added sorting

This commit is contained in:
Janrupf
2018-03-03 21:22:00 +01:00
parent 2d295d5afb
commit b8ca36372b
16 changed files with 498 additions and 169 deletions

View File

@ -1,8 +0,0 @@
#include "FtbModpackListItem.h"
FtbModpackListItem::FtbModpackListItem(QListWidget *list, FtbModpack modpack) : QListWidgetItem(list), modpack(modpack) {
}
FtbModpack FtbModpackListItem::getModpack(){
return modpack;
}

View File

@ -1,15 +0,0 @@
#pragma once
#include "QListWidget"
#include <modplatform/PackHelpers.h>
class FtbModpackListItem : public QListWidgetItem {
private:
FtbModpack modpack;
public:
FtbModpackListItem(QListWidget *list, FtbModpack modpack);
FtbModpack getModpack();
};