MT Showcase SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
AppSchedule.hpp
1 #pragma once
2 
3 #include "UIComponent.hpp"
4 
5 namespace Showcase
6 {
7  class SHOWCASE_API AppSchedule
8  {
9  public:
10  AppSchedule();
11  ~AppSchedule();
12 
13  void clear();
14  void init(GraphPtr graph, const GraphNode & node);
15 
16  private:
17  UIComponentPtr m_root;
18  };
19 }