]> git.siccegge.de Git - frida/frida.git/blob - src/gui/widgets/FunctionWidget.hxx
Move ScriptingDock contructor to cxx file
[frida/frida.git] / src / gui / widgets / FunctionWidget.hxx
1 #ifndef INCLUDE__FunctionWidget_hxx_
2 #define INCLUDE__FunctionWidget_hxx_
3
4 #include "gui/qt.hxx"
5
6 class Function;
7
8 class FunctionWidget : public QTabWidget {
9 Q_OBJECT
10 public:
11 FunctionWidget(Function* function)
12 : function(function) {}
13
14 virtual ~FunctionWidget() {}
15
16 Function* getFunction() const
17 { return function; }
18
19 private:
20 Function * function;
21 };
22
23 #endif /* INCLUDE__FunctionWidget_hxx_ */