AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH
This commit is contained in:
@@ -6,23 +6,28 @@
|
||||
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/01/21 10:34:25 by maldavid #+# #+# */
|
||||
/* Updated: 2024/01/21 11:41:51 by maldavid ### ########.fr */
|
||||
/* Updated: 2024/01/22 14:41:25 by maldavid ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef __CHANNEL__
|
||||
#define __CHANNEL__
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace irc
|
||||
{
|
||||
class Channel
|
||||
{
|
||||
public:
|
||||
Channel();
|
||||
Channel(const std::string& name);
|
||||
|
||||
inline const std::string& getName() const { return _name; }
|
||||
|
||||
~Channel();
|
||||
|
||||
private:
|
||||
const std::string _name;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user