diff options
Diffstat (limited to 'src/ui/helper.hpp')
-rw-r--r-- | src/ui/helper.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ui/helper.hpp b/src/ui/helper.hpp new file mode 100644 index 00000000..4fd14aa6 --- /dev/null +++ b/src/ui/helper.hpp @@ -0,0 +1,17 @@ +#pragma once +#include "cru/ui/base.hpp" + +namespace cru::platform { +namespace graph { +struct IGraphFactory; +} +namespace native { +struct ICursor; +struct IUiApplication; +} // namespace native +} // namespace cru::platform + +namespace cru::ui { +cru::platform::graph::IGraphFactory* GetGraphFactory(); +cru::platform::native::IUiApplication* GetUiApplication(); +} // namespace cru::ui |