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 6ed0e3e commit 85c3bc5
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions libraries/libcore/udpsocket.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/**
* @file udpsocket.h
* @author Krisna Pranav
* @brief udpsocket
* @version 6.0
* @date 2023-10-03
*
* @copyright Copyright (c) 2021 - 2023 pranaOS Developers, Krisna Pranav
*
*/

#pragma once

#include <libcore/socket.h>

namespace Core
{

class UDPSocket final : public Socket
{
public:
~UDPSocket();

private:

/**
* @brief Construct a new UDPSocket object
*
* @param parent
*/
explicit UDPSocket(Object* parent = nullptr);
}; // clas UDPSocket

} // namesapce Core

0 comments on commit 85c3bc5

Please sign in to comment.