Updraft  1.0
Open source glider flight visualisation tool.
mapobject.h
Go to the documentation of this file.
00001 #ifndef UPDRAFT_SRC_LIBRARIES_UTIL_MAPOBJECT_H_
00002 #define UPDRAFT_SRC_LIBRARIES_UTIL_MAPOBJECT_H_
00003 
00004 #include <QString>
00005 #include <QObject>
00006 
00007 namespace Updraft {
00008 
00010 class MapObject {
00011  public:
00014   MapObject() {}
00015   MapObject(QString objectName): name(objectName) {}
00016 
00018   virtual QString getObjectTypeName() = 0;
00019 
00020   QString name;
00021 };
00022 
00023 }  // End namespace Updraft
00024 
00025 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines