Files
42_irc/includes/client.hpp
Kbz-8 488c0ad83c yes
2024-01-21 10:40:54 +01:00

30 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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