diff -r 000000000000 -r 7a96bd401351 selection.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/selection.h Sun Jan 30 12:58:47 2005 +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 +