~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/depricatedlistener.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi, Andrei Karas, Patrick Matthäi
  • Date: 2013-05-27 09:14:03 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130527091403-4b1jceqok7g2v5on
Tags: 1.3.5.26-1
[ Andrei Karas ]
* Add new files to copyright file.
* Update homepage URL.

[ Patrick Matthäi ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  The ManaPlus Client
 
3
 *  Copyright (C) 2010  The Mana Developers
 
4
 *  Copyright (C) 2011-2013  The ManaPlus Developers
 
5
 *
 
6
 *  This file is part of The ManaPlus Client.
 
7
 *
 
8
 *  This program is free software; you can redistribute it and/or modify
 
9
 *  it under the terms of the GNU General Public License as published by
 
10
 *  the Free Software Foundation; either version 2 of the License, or
 
11
 *  any later version.
 
12
 *
 
13
 *  This program is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 *  GNU General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU General Public License
 
19
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
 
 
22
#include "depricatedlistener.h"
 
23
 
 
24
#include "debug.h"
 
25
 
 
26
DepricatedListener::~DepricatedListener()
 
27
{
 
28
    DepricatedEvent::remove(this);
 
29
}
 
30
 
 
31
void DepricatedListener::listen(Channels channel)
 
32
{
 
33
    DepricatedEvent::bind(this, channel);
 
34
}
 
35
 
 
36
void DepricatedListener::ignore(Channels channel)
 
37
{
 
38
    DepricatedEvent::unbind(this, channel);
 
39
}