NS/releases/3.01/source/mod/AvHLogoutComponent.h
Karl 04c334c94b Tagging 3.01 release (again)
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@15 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-03-12 22:19:53 +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