Files
PresenceDetection/Bluetooth/Functions.h
T
2018-12-18 12:07:12 +01:00

20 lines
305 B
C++

#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