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