This commit is contained in:
Kbz-8
2024-01-21 10:40:54 +01:00
parent 4374f826ea
commit 488c0ad83c
8 changed files with 139 additions and 6 deletions

29
includes/client.hpp Normal file
View File

@@ -0,0 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* client.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 10:33:17 by maldavid #+# #+# */
/* Updated: 2024/01/21 10:34:13 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef __CLIENT__
#define __CLIENT__
namespace irc
{
class Client
{
public:
Client();
~Client();
private:
};
}
#endif