removed KLib stuff added new activity filter is uncommand! at the moment, the app is not able to load new maps and breaks using old maps
21 lines
316 B
C++
21 lines
316 B
C++
#ifndef HASSELECTABLENODES_H
|
|
#define HASSELECTABLENODES_H
|
|
|
|
#include <vector>
|
|
#include <Indoor/geo/Point2.h>
|
|
|
|
class HasSelectableNodes {
|
|
|
|
|
|
public:
|
|
|
|
virtual ~HasSelectableNodes() {;}
|
|
|
|
virtual std::vector<Point2> getNodes() const = 0;
|
|
|
|
virtual void selectNode(const int idx) = 0;
|
|
|
|
};
|
|
|
|
#endif // HASSELECTABLENODES_H
|