15 lines
243 B
C++
15 lines
243 B
C++
#pragma once
|
|
|
|
#include "Widget.h"
|
|
|
|
class StackWidget : public Widget
|
|
{
|
|
public:
|
|
StackWidget();
|
|
|
|
static std::unique_ptr<StackWidget> Create();
|
|
|
|
void showChild(Widget* child);
|
|
};
|
|
|
|
using StackWidgetUPtr = std::unique_ptr<StackWidget>;
|