Initial Commit

This commit is contained in:
2018-12-18 12:07:12 +01:00
commit 7ad040c6c1
31 changed files with 1974 additions and 0 deletions
+24
View File
@@ -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