diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-31 16:53:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:54 +0300 |
commit | 8ad8da325107ef1b33bd6c3ed985859e7edb78ae (patch) | |
tree | 3dd76adef5e6dbe7da8db925ffa42ebbf21eb638 /src/listeners/pincodelistener.h | |
parent | 8cc52b6e9cf46643cc6300df844e70b8dcb85212 (diff) | |
download | manaplus-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.tar.gz manaplus-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.tar.bz2 manaplus-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.tar.xz manaplus-8ad8da325107ef1b33bd6c3ed985859e7edb78ae.zip |
add basic implimentation for set pincode.
For now it not sending pincode to server.
Diffstat (limited to 'src/listeners/pincodelistener.h')
-rw-r--r-- | src/listeners/pincodelistener.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/listeners/pincodelistener.h b/src/listeners/pincodelistener.h new file mode 100644 index 000000000..3045db549 --- /dev/null +++ b/src/listeners/pincodelistener.h @@ -0,0 +1,36 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2014 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 LISTENERS_PINCODELISTENER_H +#define LISTENERS_PINCODELISTENER_H + +#include "listeners/actionlistener.h" + +#include "localconsts.h" + +class PincodeListener final : public ActionListener +{ + public: + void action(const ActionEvent &event) override final; +}; + +extern PincodeListener pincodeListener; + +#endif // LISTENERS_PINCODELISTENER_H |