From 7ae52ac5392607f5cb56dffa9ae45ae5a2f14bd1 Mon Sep 17 00:00:00 2001 From: Chuck Miller Date: Mon, 12 Jul 2010 21:45:50 -0400 Subject: Add the foundation for the event system --- src/listener.cpp | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/listener.cpp (limited to 'src/listener.cpp') diff --git a/src/listener.cpp b/src/listener.cpp new file mode 100644 index 00000000..5ba3b16a --- /dev/null +++ b/src/listener.cpp @@ -0,0 +1,43 @@ +/* + * The Mana Client + * Copyright (C) 2010 The Mana Developers + * + * This file is part of The Mana Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "listener.h" + +#include "eventmanager.h" + +namespace Mana +{ + +Listener::~Listener() +{ + EventManager::remove(this); +} + +void Listener::listen(const std::string &channel) +{ + EventManager::bind(this, channel); +} + +void Listener::ignore(const std::string &channel) +{ + EventManager::unbind(this, channel); +} + +}; // namespace Mana -- cgit v1.2.3-60-g2f50