gramods
Loading...
Searching...
No Matches
View.hh
1
2#ifndef GRAMODS_GRAPHICS_VIEW
3#define GRAMODS_GRAPHICS_VIEW
4
5#include <gmGraphics/ViewBase.hh>
6
7BEGIN_NAMESPACE_GMGRAPHICS;
8
13class View : public ViewBase {
14
19 virtual std::string getDefaultKey() override { return "view"; }
20
21public:
22
23 GM_OFI_DECLARE;
24};
25
26END_NAMESPACE_GMGRAPHICS;
27
28#endif
The common base for nodes taking renderers for dispatching rendering jobs.
Definition ViewBase.hh:23
The base of graphics View implementations.
Definition View.hh:13