X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/abbc64cf04a35ab3549d5c516f44c7c5921baa63..718736f825077e345ad396f78735c10e21547982:/InterfaceItem.h?ds=sidebyside diff --git a/InterfaceItem.h b/InterfaceItem.h index ce65b9e..ef3b58d 100644 --- a/InterfaceItem.h +++ b/InterfaceItem.h @@ -30,7 +30,7 @@ public: // getters inline int getId() { return id; } - inline QString getName() { return name; } + QString getName(); inline double getPositionRatio() { return positionRatio; } inline double getPosition() { return position; } inline int getOrientation() { return orientation; } @@ -43,8 +43,7 @@ public: // setters void setOriginPoint(); - inline void setId(int id){ this->id = id; } - inline void setName(QString name){ this->name = name; } + inline void setId(int id){ this->id = id; } inline void setPositionRatio(double ratio) { positionRatio = ratio; } inline void setOrientation(int _orientation){ orientation = _orientation; } @@ -68,8 +67,7 @@ public: private: - int id; - QString name; + int id; double positionRatio; int position; // position in pixels on the "orientation side" of the owner int orientation; // north, south, east, west