25 lines
304 B
C++
25 lines
304 B
C++
#ifndef BLUETOOTH_SOCKET_H
|
|
#define BLUETOOTH_SOCKET_H
|
|
|
|
|
|
namespace PresenceDetection {
|
|
namespace Bluetooth {
|
|
|
|
class Socket
|
|
{
|
|
public:
|
|
Socket();
|
|
~Socket();
|
|
|
|
int Descriptor() const;
|
|
|
|
private:
|
|
int m_descriptor;
|
|
};
|
|
|
|
} // namespace Bluetooth
|
|
} // namespace PresenceDetection
|
|
|
|
#endif // BLUETOOTH_SOCKET_H
|
|
|