Initial Commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#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
|
||||
|
||||
Reference in New Issue
Block a user