Skip to content

Commit

Permalink
libraries: libcore[udpsocket]
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Oct 3, 2023
1 parent 85c3bc5 commit 52a510a
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions libraries/libcore/udpsocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,20 @@
*
*/

#pragma once
#pragma once

#include <libcore/socket.h>

namespace Core
namespace Core
{

class UDPSocket final : public Socket
class UDPSocket final : public Socket
{
C_OBJECT(UDPSocket)

public:
~UDPSocket();

/// @brief Destroy the UDPSocket object
virtual ~UDPSocket() override;

private:

/**
Expand All @@ -29,6 +31,5 @@ namespace Core
* @param parent
*/
explicit UDPSocket(Object* parent = nullptr);
}; // clas UDPSocket

}; // class UDPSocket
} // namesapce Core

0 comments on commit 52a510a

Please sign in to comment.