summaryrefslogtreecommitdiff
path: root/src/listener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-18 18:49:27 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-18 18:49:27 +0300
commit25a143ac11baebc9ecaf5c2c05d4808f20d54e3c (patch)
treeab48fe5020a74aab2d3b6e73d0cf5b99c09307ac /src/listener.h
parentc7a122c9d12d4ba6c08aed06291ebebf6bcdd1ed (diff)
downloadplus-25a143ac11baebc9ecaf5c2c05d4808f20d54e3c.tar.gz
plus-25a143ac11baebc9ecaf5c2c05d4808f20d54e3c.tar.bz2
plus-25a143ac11baebc9ecaf5c2c05d4808f20d54e3c.tar.xz
plus-25a143ac11baebc9ecaf5c2c05d4808f20d54e3c.zip
rename listender to depricatedlistener.
Diffstat (limited to 'src/listener.h')
-rw-r--r--src/listener.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/listener.h b/src/listener.h
deleted file mode 100644
index 263e1bf97..000000000
--- a/src/listener.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2010 The Mana Developers
- * Copyright (C) 2011-2013 The ManaPlus Developers
- *
- * This file is part of The ManaPlus 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 <http://www.gnu.org/licenses/>.
- */
-
-#ifndef LISTENER_H
-#define LISTENER_H
-
-#include "depricatedevent.h"
-
-#include <string>
-
-class Listener
-{
- public:
- virtual ~Listener();
-
- void listen(Channels channel);
-
- void ignore(Channels channel);
-
- virtual void processEvent(Channels channel,
- const DepricatedEvent &event) = 0;
-};
-
-#endif