VAPOR3 3.9.4
RendererInspector.h
Go to the documentation of this file.
1#pragma once
2
3#include "VRouter.h"
4
5namespace VAPoR {
6class ControlExec;
7}
9
10class RendererInspector : public VRouter {
11 VRouter *_router;
13 std::map<std::string, std::pair<RenderEventRouter*, QWidget*>> _classToInspectorMap;
14
15public:
17 void Update();
18
19 // Addresses legacy deps
20 std::vector<RenderEventRouter*> GetRenderEventRouters() const;
21};
A pure virtual class specifying the common properties of all the renderer parameter tabs in the VAPOR...
std::vector< RenderEventRouter * > GetRenderEventRouters() const
RendererInspector(VAPoR::ControlExec *ce)
Provides API for VAPOR visualizer User Interfaces (UIs)
Definition: VRouter.h:7