Go to the documentation of this file.
20 #ifndef _LINKMATRIX_HXX_
21 #define _LINKMATRIX_HXX_
40 class AbstractSceneItem;
42 class SceneComposedNodeItem;
50 LNode(std::pair<int,int>
m) :
_x(m.first),
_y(m.second) {};
52 inline int getX()
const {
return _x; };
53 inline int getY()
const {
return _y; };
54 inline std::pair<int,int>
getPos()
const {
return std::pair<int,int>(
_x,
_y); };
67 std::pair<int,int>
to;