summaryrefslogtreecommitdiffstats
path: root/pokescripting/SkinWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokescripting/SkinWrapper.h')
-rw-r--r--pokescripting/SkinWrapper.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/pokescripting/SkinWrapper.h b/pokescripting/SkinWrapper.h
new file mode 100644
index 00000000..46d4c2a2
--- /dev/null
+++ b/pokescripting/SkinWrapper.h
@@ -0,0 +1,56 @@
+/*
+ * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * 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 3 of the License, or
+ * (at your option) 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 __POKESCRIPTING_SKINWRAPPER__
+#define __POKESCRIPTING_SKINWRAPPER__
+
+// Pokescripting includes
+#include "ObjectWrapper.h"
+
+// Pokemod includes
+#include "../pokemod/Skin.h"
+
+namespace Pokescripting
+{
+class POKESCRIPTING_EXPORT SkinWrapper : public ObjectWrapper
+{
+ Q_OBJECT
+
+ public:
+ SkinWrapper(const Pokemod::Skin* skin, QObject* parent);
+ public slots:
+ QString name() const;
+ private:
+ SkinWrapper& operator=(const SkinWrapper& rhs);
+
+ const Pokemod::Skin* m_skin;
+};
+
+inline SkinWrapper::SkinWrapper(const Pokemod::Skin* skin, QObject* parent) :
+ ObjectWrapper(skin, parent),
+ m_skin(skin)
+{
+}
+
+inline QString SkinWrapper::name() const
+{
+ return m_skin->name();
+}
+
+}
+
+#endif