| 123456789101112131415161718192021222324 |
- #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
|