Files
Sourcetrail/src/app/qt/QtGuiFactory.h
T
Manuel Dobusch a8e32af5dd ui: graphView
Added basic graph view with simple nodes (just text, no edges or anything...)

fortune cookie message = Don't be afraid to take that big step.
2014-07-02 16:14:56 +02:00

18 lines
426 B
C++

#ifndef QT_GUI_FACTORY_H
#define QT_GUI_FACTORY_H
#include "gui/GuiFactory.h"
class QtGuiFactory: public GuiFactory
{
public:
QtGuiFactory();
virtual ~QtGuiFactory();
virtual std::shared_ptr<MainView> createMainView() const;
virtual std::shared_ptr<CodeView> createCodeView(ViewLayout* viewLayout) const;
virtual std::shared_ptr<GraphView> createGraphView(ViewLayout* viewLayout) const;
};
#endif // QT_GUI_FACTORY_H