20 lines
305 B
C++
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
|