diff -r 000000000000 -r 876eed30ba3b selection.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/selection.h Tue Mar 23 11:54:30 2010 +0000 @@ -0,0 +1,26 @@ +#ifndef SELECTIONOBJ_H +#define SELECTIONOBJ_H + +#include "linkablemapobj.h" +#include + +class Selection +{ +public: + Selection (); + Selection (const Selection&); + ~Selection(); + void init(); + void copy(const Selection&); + void clear(); + + bool select (LinkableMapObj*); + void unselect (LinkableMapObj*); + bool isEmpty(); + uint count(); + +private: + QPtrList selectList; +}; +#endif +