30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* server.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/21 09:12:28 by maldavid #+# #+# */
|
|
/* Updated: 2024/01/21 09:14:20 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef __SERVER_IRC__
|
|
#define __SERVER_IRC__
|
|
|
|
namespace irc
|
|
{
|
|
class Server
|
|
{
|
|
public:
|
|
Server();
|
|
|
|
~Server();
|
|
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|