halflife-thewastes-sdk/utils/vgui/include/VGUI_Layout.h
2000-06-05 00:00:00 +00:00

25 lines
No EOL
324 B
C++

#ifndef VGUI_LAYOUT_H
#define VGUI_LAYOUT_H
#include<VGUI.h>
namespace vgui
{
class Panel;
class VGUIAPI Layout
{
//private:
// Panel* _panel;
public:
Layout();
public:
//virtual void setPanel(Panel* panel); //called by Panel::setLayout
virtual void performLayout(Panel* panel);
};
}
#endif