summaryrefslogtreecommitdiff
path: root/src/being/compounditem.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-12 15:42:09 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-12 15:42:09 +0300
commitdb6b712e4169d80f8f2c84a0efbc553d2058c191 (patch)
treed2686ac79474c32d81da85be6f83385c74386a72 /src/being/compounditem.h
parent11a49b50fb6c2ff20f62f39d8606f54770b6a295 (diff)
downloadplus-db6b712e4169d80f8f2c84a0efbc553d2058c191.tar.gz
plus-db6b712e4169d80f8f2c84a0efbc553d2058c191.tar.bz2
plus-db6b712e4169d80f8f2c84a0efbc553d2058c191.tar.xz
plus-db6b712e4169d80f8f2c84a0efbc553d2058c191.zip
Extract compountitem into separate file.
Diffstat (limited to 'src/being/compounditem.h')
-rw-r--r--src/being/compounditem.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/being/compounditem.h b/src/being/compounditem.h
new file mode 100644
index 000000000..73909c56a
--- /dev/null
+++ b/src/being/compounditem.h
@@ -0,0 +1,46 @@
+/*
+ * The ManaPlus Client
+ * 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 BEING_COMPOUNDITEM_H
+#define BEING_COMPOUNDITEM_H
+
+#include <list>
+
+#include "localconsts.h"
+
+class Image;
+
+typedef std::list <const void*> VectorPointers;
+
+class CompoundItem final
+{
+ public:
+ CompoundItem();
+
+ A_DELETE_COPY(CompoundItem)
+
+ ~CompoundItem();
+
+ VectorPointers data;
+ Image *image;
+ Image *alphaImage;
+};
+
+#endif // BEING_COMPOUNDITEM_H