diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:31:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:31:44 +0300 |
commit | b91ccaac17551591ffafadee4323ff76076f7b69 (patch) | |
tree | 8e89c80d6adb7ca29cfcbf7bc6319829ab78a6f6 /src/resources/action.h | |
parent | 4ce68c50a49c0c9391b37a17505313d834f93c22 (diff) | |
download | plus-b91ccaac17551591ffafadee4323ff76076f7b69.tar.gz plus-b91ccaac17551591ffafadee4323ff76076f7b69.tar.bz2 plus-b91ccaac17551591ffafadee4323ff76076f7b69.tar.xz plus-b91ccaac17551591ffafadee4323ff76076f7b69.zip |
add noexcept into action.
Diffstat (limited to 'src/resources/action.h')
-rw-r--r-- | src/resources/action.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/resources/action.h b/src/resources/action.h index c3b4852b3..43259d5c6 100644 --- a/src/resources/action.h +++ b/src/resources/action.h @@ -35,23 +35,25 @@ class Animation; class Action final { public: - Action(); + Action() noexcept; A_DELETE_COPY(Action) ~Action(); - void setAnimation(const int direction, Animation *const animation); + void setAnimation(const int direction, + Animation *const animation) noexcept; - const Animation *getAnimation(int direction) const A_WARN_UNUSED; + const Animation *getAnimation(int direction) const + noexcept A_WARN_UNUSED; - unsigned getNumber() const A_WARN_UNUSED + unsigned getNumber() const noexcept A_WARN_UNUSED { return mNumber; } - void setNumber(const unsigned n) + void setNumber(const unsigned n) noexcept { mNumber = n; } - void setLastFrameDelay(const int delay); + void setLastFrameDelay(const int delay) noexcept; protected: typedef std::map<int, Animation*> Animations; |