author | insilmaril |
Thu Jul 27 15:13:16 2006 +0000 (2006-07-27) | |
changeset 359 | 343d55383450 |
child 2 | 608f976aa7bb |
child 364 | 7b74fa3772bf |
permissions | -rw-r--r-- |
1 #ifndef SELECTIONOBJ_H
2 #define SELECTIONOBJ_H
4 #include "linkablemapobj.h"
5 #include <qptrlist.h>
7 class Selection
8 {
9 public:
10 Selection ();
11 Selection (const Selection&);
12 ~Selection();
13 void init();
14 void copy(const Selection&);
15 void clear();
17 bool select (LinkableMapObj*);
18 void unselect (LinkableMapObj*);
19 bool isEmpty();
20 uint count();
22 private:
23 QPtrList <LinkableMapObj> selectList;
24 };
25 #endif