author | insilmaril |
Wed, 15 Mar 2006 13:53:54 +0000 | |
changeset 252 | f9ed11f2ab60 |
parent 0 | 7a96bd401351 |
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 }