File: selection.cpp

package info (click to toggle)
vym 1.8.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,000 kB
  • ctags: 1,599
  • sloc: cpp: 14,723; sh: 373; xml: 277; perl: 89; makefile: 16
file content (47 lines) | stat: -rw-r--r-- 525 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "selection.h"


Selection::Selection()
{
}

Selection::Selection(const Selection &other)
{
}

Selection::~Selection()
{
}

void Selection::init()
{
	selectList.setAutoDelete(true);
}

void Selection::copy(const Selection &other)
{
}

void Selection::clear()
{
	selectList.clear();
}

bool Selection::select(LinkableMapObj *lmo)
{
	return false;
}

void Selection::unselect(LinkableMapObj *lmo)
{
}

bool Selection::isEmpty()
{
	return selectList.isEmpty();
}

uint Selection::count()
{
	return selectList.count();
}