Files
2018-12-18 12:07:12 +01:00

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