File indexing completed on 2024-05-19 05:41:56

0001 #ifndef TESTMAINWINDOW_H
0002 #define TESTMAINWINDOW_H
0003 
0004 #include <ct_lvtldr_nodestorage.h>
0005 #include <ct_lvtmdl_debugmodel.h>
0006 #include <ct_lvtqtc_undo_manager.h>
0007 #include <mainwindow.h>
0008 
0009 class TestMainWindow : public MainWindow {
0010     Q_OBJECT
0011   public:
0012     explicit TestMainWindow(Codethink::lvtldr::NodeStorage& sharedNodeStorage,
0013                             Codethink::lvtqtc::UndoManager *undoManager = nullptr,
0014                             Codethink::lvtmdl::DebugModel *debugModel = nullptr);
0015 
0016     QString requestProjectName() override
0017     {
0018         return QStringLiteral("__test_project__");
0019     }
0020 };
0021 
0022 #endif