summaryrefslogtreecommitdiffstats
path: root/sigmod/Global.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigmod/Global.h
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmod/Global.h')
-rw-r--r--sigmod/Global.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sigmod/Global.h b/sigmod/Global.h
index 4e81f860..5802f86b 100644
--- a/sigmod/Global.h
+++ b/sigmod/Global.h
@@ -15,8 +15,8 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKEMOD_GLOBAL__
-#define __POKEMOD_GLOBAL__
+#ifndef __SIGMOD_GLOBAL__
+#define __SIGMOD_GLOBAL__
// Qt includes
#include <QtCore/QMetaType>
@@ -25,21 +25,21 @@
// KDE includes
#include <kdemacros.h>
-#ifndef POKEMOD_EXPORT
-# ifdef MAKE_POKEMOD_LIB
+#ifndef SIGMOD_EXPORT
+# ifdef MAKE_SIGMOD_LIB
/* We are building this library */
-# define POKEMOD_EXPORT KDE_EXPORT
+# define SIGMOD_EXPORT KDE_EXPORT
# else
/* We are using this library */
-# define POKEMOD_EXPORT KDE_IMPORT
+# define SIGMOD_EXPORT KDE_IMPORT
# endif
#endif
-# ifndef POKEMOD_EXPORT_DEPRECATED
-# define POKEMOD_EXPORT_DEPRECATED KDE_DEPRECATED POKEMOD_EXPORT
+# ifndef SIGMOD_EXPORT_DEPRECATED
+# define SIGMOD_EXPORT_DEPRECATED KDE_DEPRECATED SIGMOD_EXPORT
# endif
-namespace Pokemod
+namespace Sigmod
{
enum Stat
{
@@ -72,7 +72,7 @@ enum Direction
const QStringList DirectionStr = QStringList() << "Up" << "Down" << "Left" << "Right" << "None";
}
-Q_DECLARE_METATYPE(Pokemod::Stat)
-Q_DECLARE_METATYPE(Pokemod::Direction)
+Q_DECLARE_METATYPE(Sigmod::Stat)
+Q_DECLARE_METATYPE(Sigmod::Direction)
#endif