OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
PlotManagerView.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
10
11namespace ot {
12
13 class PlotManager;
14
15 class __declspec(dllexport) PlotManagerView : public WidgetView {
16 public:
17 PlotManagerView();
18 virtual ~PlotManagerView();
19
20 // ###########################################################################################################################################################################################################################################################################################################################
21
22 // Base class functions
23
24 virtual QWidget* getViewWidget(void) override;
25
26 // ###########################################################################################################################################################################################################################################################################################################################
27
28 PlotManager* getPlotManager(void) const { return m_plotManager; };
29
30 private:
31 PlotManager* m_plotManager;
32
33 };
34
35}
Definition Connector.h:8