MT Showcase SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
StylableTextHost.hpp
1 #pragma once
2 
3 #include "Export.hpp"
4 
5 #include <MultiWidgets/Widget.hpp>
6 
7 namespace Showcase
8 {
11  class SHOWCASE_API StylableTextHost
12  {
13  public:
14  StylableTextHost() {}
15  virtual ~StylableTextHost() {}
16 
17  virtual std::vector<MultiWidgets::WidgetPtr> stylableWidgets() const = 0;
18  };
19 }
20