diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-17 18:22:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-17 18:22:25 +0300 |
commit | 533172dc2df60406e2c7f08f36de3742721f8079 (patch) | |
tree | 3cdd02c2876a8eaeb8d852384e6214ecac13739c /src/client.cpp | |
parent | fed37f530d063cbce6a9bba7f1a878c42e10367e (diff) | |
download | ManaVerse-533172dc2df60406e2c7f08f36de3742721f8079.tar.gz ManaVerse-533172dc2df60406e2c7f08f36de3742721f8079.tar.bz2 ManaVerse-533172dc2df60406e2c7f08f36de3742721f8079.tar.xz ManaVerse-533172dc2df60406e2c7f08f36de3742721f8079.zip |
Add missing A_DEFAULT_COPY / A_DELETE_COPY into other files.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 644950cc0..40fa743d7 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -207,6 +207,11 @@ namespace class AccountListener final : public ActionListener { public: + AccountListener() + { } + + A_DELETE_COPY(AccountListener) + void action(const ActionEvent &) override final { client->setState(State::CHAR_SELECT); @@ -216,6 +221,11 @@ namespace class LoginListener final : public ActionListener { public: + LoginListener() + { } + + A_DELETE_COPY(LoginListener) + void action(const ActionEvent &) override final { client->setState(State::PRE_LOGIN); |