diff -r 000000000000 -r 40a1403c736d selection.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/selection.h Mon Apr 10 11:23:33 2006 +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 +