summaryrefslogtreecommitdiff
path: root/src/resources/updatefile.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-17 18:11:29 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-17 18:11:29 +0300
commit166432764d34d7dd42142b9fcd7069b927f00e3e (patch)
tree8d253d657841e03a7562accb77ca8732941ad3c2 /src/resources/updatefile.h
parente77e10c6983b0bf1549f9ce98f52f0b6a0787db6 (diff)
downloadplus-166432764d34d7dd42142b9fcd7069b927f00e3e.tar.gz
plus-166432764d34d7dd42142b9fcd7069b927f00e3e.tar.bz2
plus-166432764d34d7dd42142b9fcd7069b927f00e3e.tar.xz
plus-166432764d34d7dd42142b9fcd7069b927f00e3e.zip
Move updatefile into separate file.
Diffstat (limited to 'src/resources/updatefile.h')
-rw-r--r--src/resources/updatefile.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/resources/updatefile.h b/src/resources/updatefile.h
new file mode 100644
index 000000000..0e07fc112
--- /dev/null
+++ b/src/resources/updatefile.h
@@ -0,0 +1,48 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GUI_RESOURCES_UPDATEFILE_H
+#define GUI_RESOURCES_UPDATEFILE_H
+
+#include <string>
+
+struct UpdateFile final
+{
+ public:
+ UpdateFile() :
+ name(),
+ hash(),
+ type(),
+ desc(),
+ group(),
+ required(false)
+ {
+ }
+ std::string name;
+ std::string hash;
+ std::string type;
+ std::string desc;
+ std::string group;
+ bool required;
+};
+
+#endif // GUI_RESOURCES_UPDATEFILE_H