SDK/ListenerComponent: Fix warnings

Former-commit-id: 0ce5a9a2fb8ed2c7f03ae6d283811cf7868a9f78 [formerly 6014927c58523edb88b22f43d3019b3fd66d2888]
Former-commit-id: d0332173c8906c7a58102b62d5c6a0f04435fbd6
This commit is contained in:
Lynix 2016-07-29 18:49:16 +02:00
parent be37c62891
commit ed7aa0e07a
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ namespace Ndk
class NDK_API ListenerComponent : public Component<ListenerComponent>
{
public:
ListenerComponent();
inline ListenerComponent();
~ListenerComponent() = default;
bool IsActive() const;
void SetActive(bool active = true);
inline bool IsActive() const;
inline void SetActive(bool active = true);
static ComponentIndex componentIndex;