Skip to content
Snippets Groups Projects
PlatoonController.h 351 B
Newer Older
Hoop77's avatar
-
Hoop77 committed
//
// Created by philipp on 12.02.18.
//

#ifndef CAR_PLATOONCONTROLLER_H
#define CAR_PLATOONCONTROLLER_H

Franz Bethke's avatar
Franz Bethke committed
#include <functional>

Hoop77's avatar
-
Hoop77 committed
namespace car
{

class PlatoonController
{
public:
Franz Bethke's avatar
Franz Bethke committed
    using Callback = std::function<void()>;
    
    PlatoonController();
      
Hoop77's avatar
-  
Hoop77 committed
    void run();
Hoop77's avatar
-
Hoop77 committed

private:
Franz Bethke's avatar
Franz Bethke committed
    Callback ccNotify;
Hoop77's avatar
-
Hoop77 committed
};

}

#endif //CAR_PLATOONCONTROLLER_H