diff -r 000000000000 -r 7a96bd401351 selection.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/selection.cpp Sun Jan 30 12:58:47 2005 +0000 @@ -0,0 +1,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(); +}