NS/main/source/mod/AvHLogoutComponent.h
Ari Timonen 4f13237895 Update line endings
Change CRLF to LF in repo.
2018-04-22 18:55:55 +03:00

30 lines
622 B
C++

#ifndef AVHLOGOUTCOMPONENT_H
#define AVHLOGOUTCOMPONENT_H
#include "ui/UIComponents.h"
#include "ui/StaticLabel.h"
class AvHLogoutComponent : public StaticLabel
{
public:
AvHLogoutComponent(int wide, int tall) : StaticLabel(wide, tall) {}
};
class AvHUILogoutComponent : public UIStaticLabel
{
public:
virtual Panel* GetComponentPointer(void);
virtual bool SetClassProperties(const TRDescription& inDesc, Panel* inPanel, CSchemeManager* inSchemeManager);
private:
void AllocateComponent(const TRDescription& inDescription);
AvHLogoutComponent* mLogoutComponent;
};
#endif