forked from f1xpl/openauto
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More work to make code more platform independent
- Loading branch information
1 parent
ae23c3c
commit bd48c15
Showing
15 changed files
with
365 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#pragma once | ||
|
||
#include <autoapp/Managers/IManager.hpp> | ||
|
||
class IBluetoothManager: public IManager{ | ||
public: | ||
using Pointer = std::shared_ptr<IBluetoothManager>; | ||
|
||
public: | ||
IBluetoothManager() = default; | ||
virtual ~IBluetoothManager() = default; | ||
|
||
virtual void start() = 0; | ||
virtual void stop() = 0; | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#pragma once | ||
|
||
#include "autoapp/Signals/Signals.hpp" | ||
|
||
class IPlatform { | ||
public: | ||
using Pointer = std::shared_ptr<IPlatform>; | ||
|
||
IPlatform() = default; | ||
virtual ~IPlatform() = default; | ||
|
||
Signals::Pointer signals; | ||
|
||
|
||
}; |
Oops, something went wrong.