/* * Copyright 2009 Abshiehk Mukherjee . */ /** * \file sigmod/Direction.h */ #ifndef SIGMOD_DIRECTION #define SIGMOD_DIRECTION // Qt includes #include #include 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