diff --git a/src/BeaconManager.h b/src/BeaconManager.h deleted file mode 100644 index 702f499..0000000 --- a/src/BeaconManager.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef BEACON_MANAGER_H_ -#define BEACON_MANAGER_H_ - -#include "configuration.h" - -class BeaconManager { -public: - BeaconManager(); - - void loadConfig(const std::list &beacon_config); - - std::list::iterator getCurrentBeaconConfig() const; - void loadNextBeacon(); - -private: - std::list _beacon_config; - std::list::iterator _currentBeaconConfig; -}; - -#endif