Socket.h 304 B

123456789101112131415161718192021222324
  1. #ifndef BLUETOOTH_SOCKET_H
  2. #define BLUETOOTH_SOCKET_H
  3. namespace PresenceDetection {
  4. namespace Bluetooth {
  5. class Socket
  6. {
  7. public:
  8. Socket();
  9. ~Socket();
  10. int Descriptor() const;
  11. private:
  12. int m_descriptor;
  13. };
  14. } // namespace Bluetooth
  15. } // namespace PresenceDetection
  16. #endif // BLUETOOTH_SOCKET_H