2014-05-09 16:16:25 +01:00
|
|
|
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <memory>
|
|
|
|
class Jarmod;
|
|
|
|
typedef std::shared_ptr<Jarmod> JarmodPtr;
|
|
|
|
class Jarmod
|
|
|
|
{
|
|
|
|
public: /* data */
|
|
|
|
QString name;
|
2015-05-31 20:45:28 +01:00
|
|
|
QString originalName;
|
2014-05-09 16:16:25 +01:00
|
|
|
};
|