mapcenterobj.h
author insilmaril
Tue, 26 May 2009 11:23:44 +0000
changeset 773 340bc29da9a0
parent 767 6d2b32f305f9
permissions -rw-r--r--
Various fixes and simplifications
     1 #ifndef MAPCENTEROBJ_H
     2 #define MAPCENTEROBJ_H
     3 
     4 
     5 #include <QDate>
     6 
     7 #include "branchobj.h"
     8 
     9 
    10 class VymModel;
    11 
    12 /*! \brief The center of the map is a special branch. */
    13 
    14 /////////////////////////////////////////////////////////////////////////////
    15 class MapCenterObj:public BranchObj {
    16 public:
    17     MapCenterObj ();
    18     MapCenterObj (QGraphicsScene *);
    19     ~MapCenterObj ();
    20     void clear();
    21     void init();
    22     virtual void updateLink();
    23     virtual void updateRelPositions();
    24 };
    25 #endif