SDK/ListenerComponent: Fix warnings

Former-commit-id: b35d788a58590ab4eab4a8dfabe33e002e0c7339 [formerly 0b1e9ef21d7344214ef4ec2ef8238220b1c4eab8]
Former-commit-id: ba79bb2a7f5dae94ab0dc077d6667670c09860f3
This commit is contained in:
Lynix 2016-07-29 18:49:16 +02:00
parent 2468fd63a4
commit a7041185de
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;