author | insilmaril |
Tue Jan 24 15:09:48 2006 +0000 (2006-01-24) | |
changeset 182 | 2747c4145c71 |
child 16 | 41c3d7f9f532 |
child 74 | 98449ef9eccd |
permissions | -rw-r--r-- |
1 #include "selection.h"
4 Selection::Selection()
5 {
6 }
8 Selection::Selection(const Selection &other)
9 {
10 }
12 Selection::~Selection()
13 {
14 }
16 void Selection::init()
17 {
18 selectList.setAutoDelete(true);
19 }
21 void Selection::copy(const Selection &other)
22 {
23 }
25 void Selection::clear()
26 {
27 selectList.clear();
28 }
30 bool Selection::select(LinkableMapObj *lmo)
31 {
32 return false;
33 }
35 void Selection::unselect(LinkableMapObj *lmo)
36 {
37 }
39 bool Selection::isEmpty()
40 {
41 return selectList.isEmpty();
42 }
44 uint Selection::count()
45 {
46 return selectList.count();
47 }