EmptyManager.cpp 499 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
#include "EmptyManager.h"

namespace WaypointManager {

WaypointManager::EmptyManager::EmptyManager(Settings &settings, AreaInterface &)
    : ManagerBase(settings) {}

void WaypointManager::EmptyManager::clear() {}

10
bool WaypointManager::EmptyManager::update() { return true; }
11

12
bool WaypointManager::EmptyManager::next() { return true; }
13

14
bool WaypointManager::EmptyManager::previous() { return true; }
15

16
bool WaypointManager::EmptyManager::reset() { return true; }
17 18

} // namespace WaypointManager