| 77 | using namespace declarative; |
| 78 | |
| 79 | void fillWindow(_<AViewContainer> t) { |
| 80 | t->setLayout(std::make_unique<AStackedLayout>()); |
| 81 | t->addView(_new<ALabel>("Window contents")); |
| 82 | } |
| 83 | |
| 84 | class AllViewsWindow : public AWindow { |
| 85 | public: |
no test coverage detected