| 12345678910111213141516171819 |
- #ifndef BLUETOOTH_FUNCTIONS_H
- #define BLUETOOTH_FUNCTIONS_H
- #include <string>
- namespace PresenceDetection {
- namespace Bluetooth {
- class Functions
- {
- public:
- static bool Ping(const std::string& macAddress);
- };
- } // namespace Bluetooth
- } // namespace PresenceDetection
- #endif // BLUETOOTH_FUNCTIONS_H
|