Functions.h 305 B

12345678910111213141516171819
  1. #ifndef BLUETOOTH_FUNCTIONS_H
  2. #define BLUETOOTH_FUNCTIONS_H
  3. #include <string>
  4. namespace PresenceDetection {
  5. namespace Bluetooth {
  6. class Functions
  7. {
  8. public:
  9. static bool Ping(const std::string& macAddress);
  10. };
  11. } // namespace Bluetooth
  12. } // namespace PresenceDetection
  13. #endif // BLUETOOTH_FUNCTIONS_H