ns/releases/3.1.2/source/mod/AvHLogoutComponent.h
puzl 73a03548a7 made a copy
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@369 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-11-28 18:13:35 +00:00

30 lines
652 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