diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:54:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:54:40 +0300 |
commit | e896b54f054c70bd7214b60cc38159c196c8d5a9 (patch) | |
tree | 2a6909467fd540097fdccc3b737509648751b648 /src/resources/animation.h | |
parent | b91ccaac17551591ffafadee4323ff76076f7b69 (diff) | |
download | plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.tar.gz plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.tar.bz2 plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.tar.xz plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.zip |
add noexcept into animation.
Diffstat (limited to 'src/resources/animation.h')
-rw-r--r-- | src/resources/animation.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h index 9851e1c24..ac1ff971f 100644 --- a/src/resources/animation.h +++ b/src/resources/animation.h @@ -64,50 +64,50 @@ class Animation final friend class SimpleAnimation; public: - Animation(); + Animation() noexcept; /** * Appends a new animation at the end of the sequence. */ void addFrame(Image *const image, const int delay, const int offsetX, const int offsetY, - const int rand); + const int rand) noexcept; /** * Appends an animation terminator that states that the animation * should not loop. */ - void addTerminator(const int rand); + void addTerminator(const int rand) noexcept; /** * Returns the length of this animation in frames. */ - size_t getLength() const A_WARN_UNUSED + size_t getLength() const noexcept A_WARN_UNUSED { return mFrames.size(); } - void addJump(const std::string &name, const int rand); + void addJump(const std::string &name, const int rand) noexcept; - void addLabel(const std::string &name); + void addLabel(const std::string &name) noexcept; - void addGoto(const std::string &name, const int rand); + void addGoto(const std::string &name, const int rand) noexcept; - void addPause(const int delay, const int rand); + void addPause(const int delay, const int rand) noexcept; - void setLastFrameDelay(const int delay); + void setLastFrameDelay(const int delay) noexcept; typedef std::vector<Frame> Frames; typedef Frames::iterator FramesIter; typedef Frames::reverse_iterator FramesRevIter; #ifdef UNITTESTS - Frames &getFrames() + Frames &getFrames() noexcept { return mFrames; } #endif /** * Determines whether the given animation frame is a terminator. */ - static bool isTerminator(const Frame &phase) A_WARN_UNUSED; + static bool isTerminator(const Frame &phase) noexcept A_WARN_UNUSED; protected: Frames mFrames; |