24 lines
981 B
C++
24 lines
981 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* client.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/21 10:35:52 by maldavid #+# #+# */
|
|
/* Updated: 2024/01/21 10:36:20 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <client.hpp>
|
|
|
|
namespace irc
|
|
{
|
|
Client::Client()
|
|
{
|
|
|
|
}
|
|
|
|
Client::~Client() {}
|
|
}
|