summaryrefslogtreecommitdiffstats
path: root/sigmod
diff options
context:
space:
mode:
authorAbhishek Mukherjee <linkinpark342@gmail.com>2009-01-22 12:42:34 -0500
committerAbhishek Mukherjee <linkinpark342@gmail.com>2009-01-22 12:42:34 -0500
commita54035d84d0b61fe85749b6588a7d5b769b614d0 (patch)
treea02abe600de7856188dda5d0ac110de11669a9e3 /sigmod
parentfcf634b99033c6578e390012a0e1068cc0524919 (diff)
downloadsigen-a54035d84d0b61fe85749b6588a7d5b769b614d0.tar.gz
sigen-a54035d84d0b61fe85749b6588a7d5b769b614d0.tar.xz
sigen-a54035d84d0b61fe85749b6588a7d5b769b614d0.zip
Removed Direction.h. Not used anywhere
Diffstat (limited to 'sigmod')
-rw-r--r--sigmod/CMakeLists.txt1
-rw-r--r--sigmod/Direction.h46
2 files changed, 0 insertions, 47 deletions
diff --git a/sigmod/CMakeLists.txt b/sigmod/CMakeLists.txt
index 8007c79b..ba6b2b12 100644
--- a/sigmod/CMakeLists.txt
+++ b/sigmod/CMakeLists.txt
@@ -10,7 +10,6 @@ SET(sigmod_HEADERS
Badge.h
CoinList.h
CoinListItem.h
- Direction.h
EggGroup.h
Global.h
GlobalScript.h
diff --git a/sigmod/Direction.h b/sigmod/Direction.h
deleted file mode 100644
index 8201cbf2..00000000
--- a/sigmod/Direction.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright 2009 Abshiehk Mukherjee <linkinpark342@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 SIGMOD_DIRECTION
-#define SIGMOD_DIRECTION
-
-// Qt includes
-#include <QtCore/QMetaType>
-#include <QtCore/QStringList>
-
-namespace Sigmod
-{
-
-/**
- * \enum Direction
- * \brief Enumeration of directions.
- */
-enum Direction
-{
- D_Up = 0,
- D_Down = 1,
- D_Left = 2,
- D_Right = 3,
- D_None = 4
-};
-/// Strings for the directions.
-const QStringList DirectionStr = QStringList() << "Up" << "Down" << "Left" << "Right" << "None";
-
-}
-Q_DECLARE_METATYPE(Sigmod::Direction)
-
-#endif \ No newline at end of file