gramods
View.hh
1 
2 #ifndef GRAMODS_GRAPHICS_VIEW
3 #define GRAMODS_GRAPHICS_VIEW
4 
5 #include <gmGraphics/ViewBase.hh>
6 
7 BEGIN_NAMESPACE_GMGRAPHICS;
8 
13 class View : public ViewBase {
14 
19  virtual std::string getDefaultKey() override { return "view"; }
20 
21 public:
22 
23  GM_OFI_DECLARE;
24 };
25 
26 END_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