├── .clang-format ├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── AUTHORS ├── CHANGELOG ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DCO.md ├── Doxyfile ├── LICENSE ├── README.md ├── SECURITY.md ├── cmake ├── AddTargetLibrary.cmake ├── CodeCoverage.cmake ├── FindTBB.cmake ├── GetDate.cmake ├── GetGitVersion.cmake ├── MacDeployQt.cmake └── WinDeployQt.cmake ├── codevis.desktop ├── conan └── mac_11_profile ├── conanfile.py ├── database-spec ├── cad_db.sql ├── codebase_db.sql └── databases.qrc ├── desktopapp ├── CMakeLists.txt ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── apptesting_fixture.cpp ├── apptesting_fixture.h ├── codevis_dbus_interface.cpp ├── codevis_dbus_interface.h ├── dbustest.sh ├── desktopapp.m.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.t.cpp ├── mainwindow.ui ├── projectsettingsdialog.cpp ├── projectsettingsdialog.h ├── projectsettingsdialog.t.cpp ├── projectsettingsdialog.ui ├── qt.conf ├── testcrash.lks ├── testmainwindow.cpp └── testmainwindow.h ├── doc ├── about.md ├── build_linux.md ├── build_macos.md ├── build_windows.md ├── ci_windows.md ├── command_line_codebase_generation.md ├── dialog_codebase_generation.md ├── externallibraries.md ├── getting_started.md ├── images │ └── mainwindow.png ├── loading.md └── semantic_rules.md ├── iconset.icns ├── imgs ├── ES6-icon.png ├── LICENSE ├── add_is_a.png ├── add_uses_in_the_implementation.png ├── add_uses_in_the_interface.png ├── app-icon.ico ├── app-icon.png ├── backwards_dependencies.png ├── build.png ├── cancel.png ├── class.png ├── codevis.png ├── component.png ├── critical.png ├── debug.png ├── down.png ├── edit.png ├── expand-icon.png ├── external_edges.png ├── eye.png ├── fatal.png ├── file.svg ├── find.png ├── folder.svg ├── forward_dependencies.png ├── go-down.png ├── go-up.png ├── group.png ├── help.png ├── identify_cycle.png ├── info.png ├── invalid_design.png ├── is_a.png ├── loading-buffering.gif ├── map.png ├── new_dependency.png ├── notes.png ├── open-generated-code.png ├── package.png ├── refresh.png ├── remove_zoom.png ├── reparent_entity.png ├── repository.png ├── shrink-icon.png ├── system-run.png ├── toggle-vis-edit-state-edit.png ├── toggle-vis-edit-state-vis.png ├── toggle-vis-edit.xcf ├── trash.png ├── up.png ├── uses_in_the_implementation.png ├── uses_in_the_interface.png ├── warning.png ├── yellow-warning.png └── zoom_selection.png ├── lvtcgn ├── CMakeLists.txt ├── ct_lvtcgn_app_adapter.cpp ├── ct_lvtcgn_app_adapter.h ├── ct_lvtcgn_app_adapter.t.cpp ├── ct_lvtcgn_codegendialog.cpp ├── ct_lvtcgn_codegendialog.h ├── ct_lvtcgn_codegendialog.t.cpp ├── ct_lvtcgn_codegendialog.ui ├── ct_lvtcgn_cogedentreemodel.cpp ├── ct_lvtcgn_cogedentreemodel.h ├── ct_lvtcgn_generatecode.cpp ├── ct_lvtcgn_generatecode.h ├── ct_lvtcgn_generatecode.t.cpp └── ct_lvtcgn_testutils.h ├── lvtclp ├── CMakeLists.txt ├── README.md ├── ct_lvtclp_clputil.cpp ├── ct_lvtclp_clputil.h ├── ct_lvtclp_clputil.t.cpp ├── ct_lvtclp_compilerutil.cpp ├── ct_lvtclp_compilerutil.h ├── ct_lvtclp_componentutil.cpp ├── ct_lvtclp_componentutil.h ├── ct_lvtclp_create_codebase_db.m.cpp ├── ct_lvtclp_diagnostic_consumer.cpp ├── ct_lvtclp_diagnostic_consumer.h ├── ct_lvtclp_dumpdatabase.m.cpp ├── ct_lvtclp_filesystemscanner.cpp ├── ct_lvtclp_filesystemscanner.h ├── ct_lvtclp_filesystemscanner.t.cpp ├── ct_lvtclp_fileupdatemgr_physical.t.cpp ├── ct_lvtclp_fileutil.cpp ├── ct_lvtclp_fileutil.h ├── ct_lvtclp_headercallbacks.cpp ├── ct_lvtclp_headercallbacks.h ├── ct_lvtclp_logicaldepscanner.cpp ├── ct_lvtclp_logicaldepscanner.h ├── ct_lvtclp_logicaldepscanner.t.cpp ├── ct_lvtclp_logicaldepvisitor.cpp ├── ct_lvtclp_logicaldepvisitor.h ├── ct_lvtclp_logicalpostprocessutil.cpp ├── ct_lvtclp_logicalpostprocessutil.h ├── ct_lvtclp_logicalpostprocessutil.t.cpp ├── ct_lvtclp_merge_databases.m.cpp ├── ct_lvtclp_physicaldepscanner.cpp ├── ct_lvtclp_physicaldepscanner.h ├── ct_lvtclp_physicaldepscanner.t.cpp ├── ct_lvtclp_staticfnhandler.cpp ├── ct_lvtclp_staticfnhandler.h ├── ct_lvtclp_testfield.t.cpp ├── ct_lvtclp_testfunction.t.cpp ├── ct_lvtclp_testnamespace.t.cpp ├── ct_lvtclp_testphysicalandtemplates.t.cpp ├── ct_lvtclp_testrelationships.t.cpp ├── ct_lvtclp_testsourcefile.t.cpp ├── ct_lvtclp_testudt.t.cpp ├── ct_lvtclp_testutil.cpp ├── ct_lvtclp_testutil.h ├── ct_lvtclp_testvar.t.cpp ├── ct_lvtclp_tool.cpp ├── ct_lvtclp_tool.h ├── ct_lvtclp_tool.t.cpp ├── ct_lvtclp_toolexecutor.cpp ├── ct_lvtclp_toolexecutor.h ├── ct_lvtclp_visitlog.cpp ├── ct_lvtclp_visitlog.h ├── parse_bde.sh.in ├── run_tests.sh └── systemtests │ ├── classes_within_classes │ ├── CMakeLists.txt │ ├── README.md │ ├── groups │ │ ├── CMakeLists.txt │ │ └── prj │ │ │ ├── CMakeLists.txt │ │ │ ├── prjact │ │ │ ├── CMakeLists.txt │ │ │ ├── prjact_actor.cpp │ │ │ └── prjact_actor.h │ │ │ └── prjvhc │ │ │ ├── CMakeLists.txt │ │ │ ├── prjvhc_vehicle.cpp │ │ │ ├── prjvhc_vehicle.h │ │ │ ├── prjvhc_wheel.cpp │ │ │ └── prjvhc_wheel.h │ └── simple_class_project.m.cpp │ ├── component_circular_dependency │ ├── CMakeLists.txt │ └── groups │ │ ├── one │ │ └── onepkg │ │ │ ├── ct_onepkg_circle.cpp │ │ │ ├── ct_onepkg_circle.h │ │ │ ├── ct_onepkg_thing.cpp │ │ │ └── ct_onepkg_thing.h │ │ └── two │ │ └── twodmo │ │ ├── ct_twodmo_top.cpp │ │ └── ct_twodmo_top.h │ ├── hello_world │ ├── CMakeLists.txt │ ├── hello.m.cpp │ └── hello_world.db │ ├── package_circular_dependency │ ├── CMakeLists.txt │ └── groups │ │ ├── one │ │ └── onepkg │ │ │ ├── ct_onepkg_circle.cpp │ │ │ ├── ct_onepkg_circle.h │ │ │ ├── ct_onepkg_thing.cpp │ │ │ └── ct_onepkg_thing.h │ │ └── two │ │ └── twodmo │ │ ├── ct_twodmo_top.cpp │ │ └── ct_twodmo_top.h │ ├── project_with_includes_outside_src │ ├── prjA │ │ └── groups │ │ │ └── one │ │ │ └── oneaaa │ │ │ ├── oneaaa_comp.cpp │ │ │ └── oneaaa_comp.h │ └── prjB │ │ └── groups │ │ └── two │ │ └── twoaaa │ │ ├── twoaaa_comp.cpp │ │ └── twoaaa_comp.h │ ├── run_systemtests.py │ ├── simple_class_project │ ├── CMakeLists.txt │ ├── README.md │ ├── prjact │ │ ├── CMakeLists.txt │ │ ├── prjact_actor.cpp │ │ └── prjact_actor.h │ ├── prjvhc │ │ ├── CMakeLists.txt │ │ ├── prjvhc_vehicle.cpp │ │ ├── prjvhc_vehicle.h │ │ ├── prjvhc_wheel.cpp │ │ └── prjvhc_wheel.h │ ├── simple_class_project.db │ └── simple_class_project.m.cpp │ └── test_only_dependencies │ └── prjA │ └── groups │ └── one │ └── oneaaa │ ├── oneaaa_comp.cpp │ ├── oneaaa_comp.h │ ├── oneaaa_comp.t.cpp │ ├── oneaaa_othercomp.cpp │ ├── oneaaa_othercomp.h │ ├── oneaaa_othercomp2.cpp │ └── oneaaa_othercomp2.h ├── lvtclr ├── CMakeLists.txt ├── ct_lvtclr_colormanagement.cpp ├── ct_lvtclr_colormanagement.h └── ct_lvtclr_colormanagement.t.cpp ├── lvtldr ├── CMakeLists.txt ├── README.md ├── ct_lvtldr_alloweddependencyloader.cpp ├── ct_lvtldr_alloweddependencyloader.h ├── ct_lvtldr_alloweddependencyloader.t.cpp ├── ct_lvtldr_componentnode.cpp ├── ct_lvtldr_componentnode.h ├── ct_lvtldr_componentnodefields.h ├── ct_lvtldr_databasehandler.h ├── ct_lvtldr_graphloader.cpp ├── ct_lvtldr_graphloader.h ├── ct_lvtldr_igraphloader.cpp ├── ct_lvtldr_igraphloader.h ├── ct_lvtldr_lakosianedge.cpp ├── ct_lvtldr_lakosianedge.h ├── ct_lvtldr_lakosiannode.cpp ├── ct_lvtldr_lakosiannode.h ├── ct_lvtldr_lakosiannode.t.cpp ├── ct_lvtldr_nodestorage.cpp ├── ct_lvtldr_nodestorage.h ├── ct_lvtldr_nodestorage.t.cpp ├── ct_lvtldr_nodestoragetestutils.h ├── ct_lvtldr_packagenode.cpp ├── ct_lvtldr_packagenode.h ├── ct_lvtldr_packagenodefields.h ├── ct_lvtldr_physicalloader.cpp ├── ct_lvtldr_physicalloader.h ├── ct_lvtldr_physicalloader.m.cpp ├── ct_lvtldr_repositorynode.cpp ├── ct_lvtldr_repositorynode.h ├── ct_lvtldr_repositorynodefields.h ├── ct_lvtldr_sociutils.h ├── ct_lvtldr_typenode.cpp ├── ct_lvtldr_typenode.h └── ct_lvtldr_typenodefields.h ├── lvtmdb ├── CMakeLists.txt ├── README.md ├── ct_lvtmdb.t.cpp ├── ct_lvtmdb_componentobject.cpp ├── ct_lvtmdb_componentobject.h ├── ct_lvtmdb_databaseobject.cpp ├── ct_lvtmdb_databaseobject.h ├── ct_lvtmdb_errorobject.cpp ├── ct_lvtmdb_errorobject.h ├── ct_lvtmdb_fieldobject.cpp ├── ct_lvtmdb_fieldobject.h ├── ct_lvtmdb_fileobject.cpp ├── ct_lvtmdb_fileobject.h ├── ct_lvtmdb_functionbase.cpp ├── ct_lvtmdb_functionbase.h ├── ct_lvtmdb_functionobject.cpp ├── ct_lvtmdb_functionobject.h ├── ct_lvtmdb_lockable.cpp ├── ct_lvtmdb_lockable.h ├── ct_lvtmdb_methodobject.cpp ├── ct_lvtmdb_methodobject.h ├── ct_lvtmdb_namespaceobject.cpp ├── ct_lvtmdb_namespaceobject.h ├── ct_lvtmdb_objectstore.cpp ├── ct_lvtmdb_objectstore.h ├── ct_lvtmdb_packageobject.cpp ├── ct_lvtmdb_packageobject.h ├── ct_lvtmdb_repositoryobject.cpp ├── ct_lvtmdb_repositoryobject.h ├── ct_lvtmdb_soci_helper.h ├── ct_lvtmdb_soci_reader.cpp ├── ct_lvtmdb_soci_reader.h ├── ct_lvtmdb_soci_writer.cpp ├── ct_lvtmdb_soci_writer.h ├── ct_lvtmdb_typeobject.cpp ├── ct_lvtmdb_typeobject.h ├── ct_lvtmdb_util.cpp ├── ct_lvtmdb_util.h ├── ct_lvtmdb_variableobject.cpp └── ct_lvtmdb_variableobject.h ├── lvtmdl ├── CMakeLists.txt ├── ct_lvtmdl_basetablemodel.cpp ├── ct_lvtmdl_basetablemodel.h ├── ct_lvtmdl_basetreemodel.cpp ├── ct_lvtmdl_basetreemodel.h ├── ct_lvtmdl_circular_relationships_model.cpp ├── ct_lvtmdl_circular_relationships_model.h ├── ct_lvtmdl_debugmodel.cpp ├── ct_lvtmdl_debugmodel.h ├── ct_lvtmdl_errorsmodel.cpp ├── ct_lvtmdl_errorsmodel.h ├── ct_lvtmdl_fieldstablemodel.cpp ├── ct_lvtmdl_fieldstablemodel.h ├── ct_lvtmdl_historylistmodel.cpp ├── ct_lvtmdl_historylistmodel.h ├── ct_lvtmdl_methodstablemodel.cpp ├── ct_lvtmdl_methodstablemodel.h ├── ct_lvtmdl_modelhelpers.cpp ├── ct_lvtmdl_modelhelpers.h ├── ct_lvtmdl_modelhelpers.t.cpp ├── ct_lvtmdl_namespacetreemodel.cpp ├── ct_lvtmdl_namespacetreemodel.h ├── ct_lvtmdl_packagetreemodel.cpp ├── ct_lvtmdl_packagetreemodel.h ├── ct_lvtmdl_physicaltablemodels.cpp ├── ct_lvtmdl_physicaltablemodels.h ├── ct_lvtmdl_simpletextmodel.cpp ├── ct_lvtmdl_simpletextmodel.h ├── ct_lvtmdl_treefiltermodel.cpp ├── ct_lvtmdl_treefiltermodel.h ├── ct_lvtmdl_usesintheimpltablemodel.cpp ├── ct_lvtmdl_usesintheimpltablemodel.h ├── ct_lvtmdl_usesintheinterfacetablemodel.cpp └── ct_lvtmdl_usesintheinterfacetablemodel.h ├── lvtplg ├── CMakeLists.txt ├── ct_lvtplg_basicpluginhooks.h ├── ct_lvtplg_handlercontextmenuaction.h ├── ct_lvtplg_handlerdockwidget.h ├── ct_lvtplg_handlerentityreport.h ├── ct_lvtplg_handlergraphicsview.h ├── ct_lvtplg_handlersetup.h ├── ct_lvtplg_handlertreewidget.h ├── ct_lvtplg_librarydispatcherinterface.h ├── ct_lvtplg_plugindatatypes.h ├── ct_lvtplg_pluginmanager.cpp ├── ct_lvtplg_pluginmanager.h ├── ct_lvtplg_pythonlibrarydispatcher.cpp ├── ct_lvtplg_pythonlibrarydispatcher.h ├── ct_lvtplg_sharedlibrarydispatcher.cpp ├── ct_lvtplg_sharedlibrarydispatcher.h └── generate_plugin_hooks.py ├── lvtprj ├── CMakeLists.txt ├── ct_lvtprj_create_prj_from_db.m.cpp ├── ct_lvtprj_projectfile.cpp ├── ct_lvtprj_projectfile.h └── ct_lvtprj_projectfile.t.cpp ├── lvtqtc ├── CMakeLists.txt ├── README.md ├── ct_lvtqtc_alg_level_layout.cpp ├── ct_lvtqtc_alg_level_layout.h ├── ct_lvtqtc_alg_transitive_reduction.cpp ├── ct_lvtqtc_alg_transitive_reduction.h ├── ct_lvtqtc_alg_transitive_reduction.t.cpp ├── ct_lvtqtc_componententity.cpp ├── ct_lvtqtc_componententity.h ├── ct_lvtqtc_edge_based_tool.cpp ├── ct_lvtqtc_edge_based_tool.h ├── ct_lvtqtc_edgecollection.cpp ├── ct_lvtqtc_edgecollection.h ├── ct_lvtqtc_ellipsistextitem.cpp ├── ct_lvtqtc_ellipsistextitem.h ├── ct_lvtqtc_ellipsistextitem.t.cpp ├── ct_lvtqtc_graphicsrectitem.cpp ├── ct_lvtqtc_graphicsrectitem.h ├── ct_lvtqtc_graphicsscene.cpp ├── ct_lvtqtc_graphicsscene.h ├── ct_lvtqtc_graphicsscene.t.cpp ├── ct_lvtqtc_graphicsview.cpp ├── ct_lvtqtc_graphicsview.h ├── ct_lvtqtc_graphicsview.t.cpp ├── ct_lvtqtc_iconhelpers.cpp ├── ct_lvtqtc_iconhelpers.h ├── ct_lvtqtc_inputdialog.cpp ├── ct_lvtqtc_inputdialog.h ├── ct_lvtqtc_inputdialog.t.cpp ├── ct_lvtqtc_inspect_dependency_window.cpp ├── ct_lvtqtc_inspect_dependency_window.h ├── ct_lvtqtc_inspect_dependency_window.t.cpp ├── ct_lvtqtc_isa.cpp ├── ct_lvtqtc_isa.h ├── ct_lvtqtc_itool.cpp ├── ct_lvtqtc_itool.h ├── ct_lvtqtc_lakosentity.cpp ├── ct_lvtqtc_lakosentity.h ├── ct_lvtqtc_lakosentity.t.cpp ├── ct_lvtqtc_lakosentitypluginutils.cpp ├── ct_lvtqtc_lakosentitypluginutils.h ├── ct_lvtqtc_lakosrelation.cpp ├── ct_lvtqtc_lakosrelation.h ├── ct_lvtqtc_logicalentity.cpp ├── ct_lvtqtc_logicalentity.h ├── ct_lvtqtc_minimap.cpp ├── ct_lvtqtc_minimap.h ├── ct_lvtqtc_nodestorage_testing_helpers.h ├── ct_lvtqtc_packagedependency.cpp ├── ct_lvtqtc_packagedependency.h ├── ct_lvtqtc_packagedependency.t.cpp ├── ct_lvtqtc_packageentity.cpp ├── ct_lvtqtc_packageentity.h ├── ct_lvtqtc_pluginmanagerutils.cpp ├── ct_lvtqtc_pluginmanagerutils.h ├── ct_lvtqtc_repositoryentity.cpp ├── ct_lvtqtc_repositoryentity.h ├── ct_lvtqtc_testing_utils.cpp ├── ct_lvtqtc_testing_utils.h ├── ct_lvtqtc_tool_add_component.cpp ├── ct_lvtqtc_tool_add_component.h ├── ct_lvtqtc_tool_add_component.t.cpp ├── ct_lvtqtc_tool_add_entity.cpp ├── ct_lvtqtc_tool_add_entity.h ├── ct_lvtqtc_tool_add_logical_entity.cpp ├── ct_lvtqtc_tool_add_logical_entity.h ├── ct_lvtqtc_tool_add_logical_entity.t.cpp ├── ct_lvtqtc_tool_add_logical_relation.cpp ├── ct_lvtqtc_tool_add_logical_relation.h ├── ct_lvtqtc_tool_add_logical_relation.t.cpp ├── ct_lvtqtc_tool_add_package.cpp ├── ct_lvtqtc_tool_add_package.h ├── ct_lvtqtc_tool_add_package.t.cpp ├── ct_lvtqtc_tool_add_physical_dependency.cpp ├── ct_lvtqtc_tool_add_physical_dependency.h ├── ct_lvtqtc_tool_add_physical_dependency.t.cpp ├── ct_lvtqtc_tool_reparent_entity.cpp ├── ct_lvtqtc_tool_reparent_entity.h ├── ct_lvtqtc_tool_reparent_entity.t.cpp ├── ct_lvtqtc_tool_rubberband.cpp ├── ct_lvtqtc_tool_rubberband.h ├── ct_lvtqtc_tool_zoom.cpp ├── ct_lvtqtc_tool_zoom.h ├── ct_lvtqtc_tooltip.cpp ├── ct_lvtqtc_tooltip.h ├── ct_lvtqtc_undo_add_component.cpp ├── ct_lvtqtc_undo_add_component.h ├── ct_lvtqtc_undo_add_component.t.cpp ├── ct_lvtqtc_undo_add_edge.cpp ├── ct_lvtqtc_undo_add_edge.h ├── ct_lvtqtc_undo_add_entity_common.cpp ├── ct_lvtqtc_undo_add_entity_common.h ├── ct_lvtqtc_undo_add_logicalentity.cpp ├── ct_lvtqtc_undo_add_logicalentity.h ├── ct_lvtqtc_undo_add_logicalentity.t.cpp ├── ct_lvtqtc_undo_add_package.cpp ├── ct_lvtqtc_undo_add_package.h ├── ct_lvtqtc_undo_add_package.t.cpp ├── ct_lvtqtc_undo_cover.cpp ├── ct_lvtqtc_undo_cover.h ├── ct_lvtqtc_undo_expand.cpp ├── ct_lvtqtc_undo_expand.h ├── ct_lvtqtc_undo_load_entity.cpp ├── ct_lvtqtc_undo_load_entity.h ├── ct_lvtqtc_undo_load_entity.t.cpp ├── ct_lvtqtc_undo_manager.cpp ├── ct_lvtqtc_undo_manager.h ├── ct_lvtqtc_undo_move.cpp ├── ct_lvtqtc_undo_move.h ├── ct_lvtqtc_undo_move.t.cpp ├── ct_lvtqtc_undo_notes.cpp ├── ct_lvtqtc_undo_notes.h ├── ct_lvtqtc_undo_notes.t.cpp ├── ct_lvtqtc_undo_rename_entity.cpp ├── ct_lvtqtc_undo_rename_entity.h ├── ct_lvtqtc_undo_rename_entity.t.cpp ├── ct_lvtqtc_undo_reparent_entity.cpp ├── ct_lvtqtc_undo_reparent_entity.h ├── ct_lvtqtc_usesinnameonly.cpp ├── ct_lvtqtc_usesinnameonly.h ├── ct_lvtqtc_usesintheimplementation.cpp ├── ct_lvtqtc_usesintheimplementation.h ├── ct_lvtqtc_usesintheinterface.cpp ├── ct_lvtqtc_usesintheinterface.h ├── ct_lvtqtc_util.cpp └── ct_lvtqtc_util.h ├── lvtqtd ├── CMakeLists.txt ├── README.md ├── ct_lvtqtd_packageviewdelegate.cpp ├── ct_lvtqtd_packageviewdelegate.h ├── ct_lvtqtd_removedelegate.cpp └── ct_lvtqtd_removedelegate.h ├── lvtqtw ├── CMakeLists.txt ├── ct_lvtqtw_backgroundeventfilter.cpp ├── ct_lvtqtw_backgroundeventfilter.h ├── ct_lvtqtw_configurationdialog.cpp ├── ct_lvtqtw_configurationdialog.h ├── ct_lvtqtw_configurationdialog.t.cpp ├── ct_lvtqtw_configurationdialog.ui ├── ct_lvtqtw_cycletreeview.cpp ├── ct_lvtqtw_cycletreeview.h ├── ct_lvtqtw_errorview.cpp ├── ct_lvtqtw_errorview.h ├── ct_lvtqtw_errorview.ui ├── ct_lvtqtw_exportmanager.cpp ├── ct_lvtqtw_exportmanager.h ├── ct_lvtqtw_exportmanager.t.cpp ├── ct_lvtqtw_graphtabelement.cpp ├── ct_lvtqtw_graphtabelement.h ├── ct_lvtqtw_graphtabelement.ui ├── ct_lvtqtw_modifierhelpers.cpp ├── ct_lvtqtw_modifierhelpers.h ├── ct_lvtqtw_namespacetreeview.cpp ├── ct_lvtqtw_namespacetreeview.h ├── ct_lvtqtw_parse_codebase.cpp ├── ct_lvtqtw_parse_codebase.h ├── ct_lvtqtw_parse_codebase.ui ├── ct_lvtqtw_searchwidget.cpp ├── ct_lvtqtw_searchwidget.h ├── ct_lvtqtw_searchwidget.ui ├── ct_lvtqtw_splitterview.cpp ├── ct_lvtqtw_splitterview.h ├── ct_lvtqtw_statusbar.cpp ├── ct_lvtqtw_statusbar.h ├── ct_lvtqtw_statusbar.t.cpp ├── ct_lvtqtw_tabwidget.cpp ├── ct_lvtqtw_tabwidget.h ├── ct_lvtqtw_tabwidget.t.cpp ├── ct_lvtqtw_textview.cpp ├── ct_lvtqtw_textview.h ├── ct_lvtqtw_textview.t.cpp ├── ct_lvtqtw_toolbox.cpp ├── ct_lvtqtw_toolbox.h ├── ct_lvtqtw_treeview.cpp ├── ct_lvtqtw_treeview.h ├── ct_lvtqtw_welcomescreen.cpp ├── ct_lvtqtw_welcomescreen.h └── ct_lvtqtw_welcomewidget.ui ├── lvtshr ├── CMakeLists.txt ├── README.md ├── ct_lvtshr_functional.cpp ├── ct_lvtshr_functional.h ├── ct_lvtshr_fuzzyutil.cpp ├── ct_lvtshr_fuzzyutil.h ├── ct_lvtshr_fuzzyutil.t.cpp ├── ct_lvtshr_graphenums.cpp ├── ct_lvtshr_graphenums.h ├── ct_lvtshr_graphstorage.cpp ├── ct_lvtshr_graphstorage.h ├── ct_lvtshr_iterator.cpp ├── ct_lvtshr_iterator.h ├── ct_lvtshr_iterator.t.cpp ├── ct_lvtshr_loaderinfo.cpp ├── ct_lvtshr_loaderinfo.h ├── ct_lvtshr_stringhelpers.cpp ├── ct_lvtshr_stringhelpers.h ├── ct_lvtshr_stringhelpers.t.cpp ├── ct_lvtshr_uniqueid.cpp └── ct_lvtshr_uniqueid.h ├── lvttst ├── CMakeLists.txt ├── README.md ├── ct_lvttst_fixture_qt.cpp ├── ct_lvttst_fixture_qt.h ├── ct_lvttst_main.t.cpp ├── ct_lvttst_osstream.cpp ├── ct_lvttst_osstream.h ├── ct_lvttst_testcfgoptions.cpp ├── ct_lvttst_testcfgoptions.h ├── ct_lvttst_tmpdir.cpp └── ct_lvttst_tmpdir.h ├── news.html ├── packaging ├── appimage │ └── Dockerfile ├── bundle-src │ └── Dockerfile ├── centos7 │ └── Dockerfile ├── macos │ └── llvm-build.sh └── windows │ ├── applicationicon.rc │ ├── llvm-build.bat │ └── run-tests.bat ├── plugins ├── CMakeLists.txt ├── code_coverage_plugin │ ├── CMakeLists.txt │ ├── README.md │ └── plugin.cpp └── cycle_detection_plugin │ ├── CMakeLists.txt │ ├── README.md │ └── plugin.cpp ├── preferences.conf ├── preferences.cpp ├── preferences.h ├── project_tests └── bjg_wrong_cmake │ ├── CMakeLists.txt │ ├── groups │ └── bjg │ │ ├── bjgb │ │ ├── CMakeLists.txt │ │ ├── bjgb_dealercount.cpp │ │ ├── bjgb_dealercount.h │ │ ├── bjgb_dealercount.t.cpp │ │ ├── bjgb_rank.cpp │ │ ├── bjgb_rank.h │ │ ├── bjgb_rank.t.cpp │ │ ├── bjgb_rules.cpp │ │ ├── bjgb_rules.h │ │ ├── bjgb_shoe.cpp │ │ ├── bjgb_shoe.h │ │ ├── bjgb_shoe.t.cpp │ │ ├── bjgb_shoeutil.cpp │ │ ├── bjgb_shoeutil.h │ │ ├── bjgb_shoeutil.t.cpp │ │ ├── bjgb_state.cpp │ │ ├── bjgb_state.h │ │ ├── bjgb_state.t.cpp │ │ ├── bjgb_types.cpp │ │ ├── bjgb_types.h │ │ └── bjgb_types.t.cpp │ │ ├── bjgc │ │ ├── CMakeLists.txt │ │ ├── bjgc_dealertable.cpp │ │ ├── bjgc_dealertable.h │ │ ├── bjgc_dealertable.t.cpp │ │ ├── bjgc_dealertableutil.cpp │ │ ├── bjgc_dealertableutil.h │ │ ├── bjgc_playertable.cpp │ │ ├── bjgc_playertable.h │ │ ├── bjgc_playertable.t.cpp │ │ ├── bjgc_playertableutil.cpp │ │ └── bjgc_playertableutil.h │ │ └── test │ │ ├── CMakeLists.txt │ │ └── bj.m.220207.cpp │ └── readme.txt ├── python-win-deps ├── Lib │ └── site-packages │ │ └── pip │ │ └── _internal │ │ └── operations │ │ └── build │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── metadata.cpython-310.pyc │ │ ├── metadata_editable.cpython-310.pyc │ │ ├── metadata_legacy.cpython-310.pyc │ │ ├── wheel.cpython-310.pyc │ │ ├── wheel_editable.cpython-310.pyc │ │ └── wheel_legacy.cpython-310.pyc │ │ ├── metadata.py │ │ ├── metadata_editable.py │ │ ├── metadata_legacy.py │ │ ├── wheel.py │ │ ├── wheel_editable.py │ │ └── wheel_legacy.py └── python │ └── site-packages │ ├── conan │ └── tools │ │ └── build │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── cpu.cpython-310.pyc │ │ └── cross_building.cpython-310.pyc │ │ ├── cpu.py │ │ └── cross_building.py │ └── conans │ └── client │ └── build │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── autotools_environment.cpython-310.pyc │ ├── cmake.cpython-310.pyc │ ├── cmake_flags.cpython-310.pyc │ ├── compiler_flags.cpython-310.pyc │ ├── cppstd_flags.cpython-310.pyc │ ├── meson.cpython-310.pyc │ ├── msbuild.cpython-310.pyc │ └── visual_environment.cpython-310.pyc │ ├── autotools_environment.py │ ├── cmake.py │ ├── cmake_flags.py │ ├── compiler_flags.py │ ├── cppstd_flags.py │ ├── meson.py │ ├── msbuild.py │ └── visual_environment.py ├── python ├── __pycache__ │ └── codegenerator.cpython-39.pyc └── codegeneration │ └── cmake │ ├── __init__.py │ ├── __pycache__ │ └── codegenerator.cpython-39.pyc │ ├── cmakelists_pkg.template │ ├── cmakelists_pkg_group.template │ ├── cmakelists_root.template │ ├── codegenerator.py │ ├── headerfile.template │ └── sourcefile.template ├── qml └── README.md ├── resources.qrc ├── scripts ├── README.md ├── ci │ ├── cppcheck.sh │ └── scan-build.sh ├── clang-format.sh ├── clang-tidy.sh ├── clazy.sh ├── docker │ ├── parse.sh │ └── run.sh ├── multi_db_merge.py └── packaging │ ├── build-cli-package.sh │ └── build-package.sh ├── semrules ├── Boost.py ├── Catch2.py ├── GL.py ├── Kate.py ├── Kf5.py ├── Konsole.py ├── LLVM.py ├── MRichTextEditor.py ├── QMobipocket.py ├── Qt.py ├── QtCrypto.py ├── Quazip.py ├── SDL.py ├── System.py ├── Wt.py ├── ZZ-System.py ├── codevis.py ├── configuration-parser.py ├── cppresult.py ├── cpython.py ├── dbusmenu.py ├── epoxy.py ├── epub.py ├── exiv2.py ├── gpgmepp.py ├── kcachegrind.py ├── kwidgetsaddons.py ├── lakosdiagram.py ├── libexslt.py ├── libmount.py ├── libxml.py ├── libxslt.py ├── lks_sqlite3.py ├── lzmacpp.py ├── micro16.py ├── oup.py ├── phonon.py ├── polkit-qt.py ├── pybind11.py ├── taglib.py ├── wayland.py └── x11.py ├── submodules ├── LICENSES │ ├── LICENSE-backward-cpp │ └── LICENSE-configuration-parser ├── backward-cpp │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── BackwardConfig.cmake │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── backward.cpp │ ├── backward.hpp │ ├── builds.sh │ ├── conanfile.py │ ├── doc │ │ ├── nice.png │ │ ├── pretty.png │ │ └── rude.png │ ├── test │ │ ├── _test_main.cpp │ │ ├── rectrace.cpp │ │ ├── select_signals.cpp │ │ ├── stacktrace.cpp │ │ ├── suicide.cpp │ │ ├── test.cpp │ │ └── test.hpp │ └── test_package │ │ ├── CMakeLists.txt │ │ ├── conanfile.py │ │ └── main.cpp └── configuration-parser │ ├── .gitignore │ ├── .reuse │ └── dep5 │ ├── CMakeLists.txt │ ├── ConfigurationParserConfig.cmake.in │ ├── LICENSES │ ├── CC0-1.0.txt │ └── MIT.txt │ ├── README.md │ ├── cmake │ └── ConfigurationCompiler.cmake │ ├── common │ ├── dump_common.cpp │ ├── dump_common.h │ ├── string_helpers.cpp │ └── string_helpers.h │ ├── kconfig │ ├── dump_kconfig.cpp │ └── dump_kconfig.h │ ├── main.cpp │ ├── parser │ ├── meta_settings.h │ ├── statemachine.cpp │ └── statemachine.h │ ├── qobject │ ├── dump_qobject.cpp │ └── dump_qobject.h │ ├── qsettings │ ├── dump_qsettings.cpp │ └── dump_qsettings.h │ └── test │ ├── CMakeLists.txt │ ├── demo_kconfig.conf │ ├── demo_qobject.conf │ ├── demo_qsettings.conf │ ├── test-empty-prefs.conf │ ├── test-empty-prefs.kconfig.cpp │ ├── test-empty-prefs.kconfig.h │ ├── test-empty-prefs.qobject.cpp │ ├── test-empty-prefs.qobject.h │ ├── test-empty-prefs.qsettings.cpp │ ├── test-empty-prefs.qsettings.h │ ├── test-includes.conf │ ├── test-includes.kconfig.cpp │ ├── test-includes.kconfig.h │ ├── test-includes.qobject.cpp │ ├── test-includes.qobject.h │ ├── test-includes.qsettings.cpp │ ├── test-includes.qsettings.h │ ├── test-namespace.conf │ ├── test-namespace.kconfig.cpp │ ├── test-namespace.kconfig.h │ ├── test-namespace.qobject.cpp │ ├── test-namespace.qobject.h │ ├── test-namespace.qsettings.cpp │ ├── test-namespace.qsettings.h │ ├── test-scopped-preferences.conf │ ├── test-scopped-preferences.kconfig.cpp │ ├── test-scopped-preferences.kconfig.h │ ├── test-scopped-preferences.qobject.cpp │ ├── test-scopped-preferences.qobject.h │ ├── test-scopped-preferences.qsettings.cpp │ ├── test-scopped-preferences.qsettings.h │ ├── test-simple-inner-pref.conf │ ├── test-simple-inner-pref.kconfig.cpp │ ├── test-simple-inner-pref.kconfig.h │ ├── test-simple-inner-pref.qobject.cpp │ ├── test-simple-inner-pref.qobject.h │ ├── test-simple-inner-pref.qsettings.cpp │ ├── test-simple-inner-pref.qsettings.h │ ├── test-simple-prefs-aggregate-value.conf │ ├── test-simple-prefs-aggregate-value.kconfig.cpp │ ├── test-simple-prefs-aggregate-value.kconfig.h │ ├── test-simple-prefs-aggregate-value.qobject.cpp │ ├── test-simple-prefs-aggregate-value.qobject.h │ ├── test-simple-prefs-aggregate-value.qsettings.cpp │ ├── test-simple-prefs-aggregate-value.qsettings.h │ ├── test-simple-prefs-default-value.conf │ ├── test-simple-prefs-default-value.kconfig.cpp │ ├── test-simple-prefs-default-value.kconfig.h │ ├── test-simple-prefs-default-value.qobject.cpp │ ├── test-simple-prefs-default-value.qobject.h │ ├── test-simple-prefs-default-value.qsettings.cpp │ ├── test-simple-prefs-default-value.qsettings.h │ ├── test-simple-prefs.conf │ ├── test-simple-prefs.kconfig.cpp │ ├── test-simple-prefs.kconfig.h │ ├── test-simple-prefs.qobject.cpp │ ├── test-simple-prefs.qobject.h │ ├── test-simple-prefs.qsettings.cpp │ ├── test-simple-prefs.qsettings.h │ ├── test.cpp │ └── unittests.cpp ├── thirdparty ├── .clang-format ├── CMakeLists.txt ├── MRichTextEditor │ ├── CMakeLists.txt │ ├── LGPL_EXCEPTION.txt │ ├── LICENSE.LGPL │ ├── README.md │ ├── mrichtextedit.cpp │ ├── mrichtextedit.h │ ├── mrichtextedit.ui │ ├── mtextedit.cpp │ └── mtextedit.h ├── kwidgetsaddons │ ├── CMakeLists.txt │ ├── LICENSE.LGPL │ ├── fonthelpers_p.h │ ├── kcolorbutton.cpp │ ├── kcolorbutton.h │ ├── kfontchooser.cpp │ ├── kfontchooser.h │ ├── kfontchooserdialog.cpp │ ├── kfontchooserdialog.h │ ├── kfontchooserwidget.ui │ ├── kfontrequester.cpp │ ├── kfontrequester.h │ ├── kmessagewidget.cpp │ └── kmessagewidget.h ├── oup │ ├── .clang-format │ ├── LICENSE │ └── observable_unique_ptr.hpp ├── pybind11 │ ├── .clang-format │ ├── LICENSE │ ├── attr.h │ ├── buffer_info.h │ ├── cast.h │ ├── chrono.h │ ├── common.h │ ├── complex.h │ ├── detail │ │ ├── class.h │ │ ├── common.h │ │ ├── descr.h │ │ ├── init.h │ │ ├── internals.h │ │ ├── type_caster_base.h │ │ └── typeid.h │ ├── eigen.h │ ├── embed.h │ ├── eval.h │ ├── functional.h │ ├── gil.h │ ├── iostream.h │ ├── numpy.h │ ├── operators.h │ ├── options.h │ ├── pybind11.h │ ├── pytypes.h │ ├── stl.h │ ├── stl │ │ └── filesystem.h │ └── stl_bind.h ├── quazip │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── Doxyfile │ ├── NEWS.txt │ ├── QuaZip-1.x-migration.md │ ├── README.md │ ├── quazip │ │ ├── CMakeLists.txt │ │ ├── JlCompress.cpp │ │ ├── JlCompress.h │ │ ├── QuaZipConfig.cmake.in │ │ ├── doc │ │ │ ├── faq.dox │ │ │ ├── index.dox │ │ │ └── usage.dox │ │ ├── ioapi.h │ │ ├── minizip_crypt.h │ │ ├── qioapi.cpp │ │ ├── quaadler32.cpp │ │ ├── quaadler32.h │ │ ├── quachecksum32.cpp │ │ ├── quachecksum32.h │ │ ├── quacrc32.cpp │ │ ├── quacrc32.h │ │ ├── quagzipfile.cpp │ │ ├── quagzipfile.h │ │ ├── quaziodevice.cpp │ │ ├── quaziodevice.h │ │ ├── quazip.cpp │ │ ├── quazip.h │ │ ├── quazip.pc.cmakein │ │ ├── quazip_global.h │ │ ├── quazip_qt_compat.h │ │ ├── quazipdir.cpp │ │ ├── quazipdir.h │ │ ├── quazipfile.cpp │ │ ├── quazipfile.h │ │ ├── quazipfileinfo.cpp │ │ ├── quazipfileinfo.h │ │ ├── quazipnewinfo.cpp │ │ ├── quazipnewinfo.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ └── qztest │ │ ├── CMakeLists.txt │ │ ├── qztest.cpp │ │ ├── qztest.h │ │ ├── qztest.qrc │ │ ├── test_files │ │ └── issue43_cant_get_dates.zip │ │ ├── testjlcompress.cpp │ │ ├── testjlcompress.h │ │ ├── testquachecksum32.cpp │ │ ├── testquachecksum32.h │ │ ├── testquagzipfile.cpp │ │ ├── testquagzipfile.h │ │ ├── testquaziodevice.cpp │ │ ├── testquaziodevice.h │ │ ├── testquazip.cpp │ │ ├── testquazip.h │ │ ├── testquazipdir.cpp │ │ ├── testquazipdir.h │ │ ├── testquazipfile.cpp │ │ ├── testquazipfile.h │ │ ├── testquazipfileinfo.cpp │ │ ├── testquazipfileinfo.h │ │ ├── testquazipnewinfo.cpp │ │ └── testquazipnewinfo.h ├── result │ ├── .clang-format │ ├── LICENSE │ ├── README.md │ └── result.hpp └── soci │ ├── .circleci │ └── config.yml │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ └── workflows │ │ ├── ci.yml │ │ └── codeql.yml │ ├── .gitignore │ ├── .markdownlint.json │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── LICENSE_1_0.txt │ ├── README.md │ ├── RELEASING.md │ ├── TODO │ ├── Vagrantfile │ ├── appveyor.yml │ ├── cmake │ ├── .gitignore │ ├── CMakeLists.txt │ ├── SociBackend.cmake │ ├── SociConfig.cmake │ ├── SociDependencies.cmake │ ├── SociUtilities.cmake │ ├── SociVersion.cmake │ ├── configs │ │ ├── test-access.cmake │ │ └── test-mysql.cmake │ ├── dependencies │ │ ├── Boost.cmake │ │ ├── DB2.cmake │ │ ├── Firebird.cmake │ │ ├── MySQL.cmake │ │ ├── ODBC.cmake │ │ ├── Oracle.cmake │ │ ├── PostgreSQL.cmake │ │ ├── SQLite3.cmake │ │ └── Threads.cmake │ ├── modules │ │ ├── FindDB2.cmake │ │ ├── FindDL.cmake │ │ ├── FindFirebird.cmake │ │ ├── FindMySQL.cmake │ │ ├── FindODBC.cmake │ │ ├── FindOracle.cmake │ │ ├── FindPostgreSQL.cmake │ │ ├── FindSQLite3.cmake │ │ └── FindSoci.cmake │ └── resources │ │ ├── SOCIConfig.cmake.in │ │ └── vs2010-test-cmd-args.vcxproj.user.in │ ├── docs │ ├── api │ │ ├── backend.md │ │ └── client.md │ ├── backends │ │ ├── db2.md │ │ ├── firebird.md │ │ ├── index.md │ │ ├── mysql.md │ │ ├── odbc.md │ │ ├── oracle.md │ │ ├── postgresql.md │ │ └── sqlite3.md │ ├── beyond.md │ ├── binding.md │ ├── boost.md │ ├── connections.md │ ├── errors.md │ ├── faq.md │ ├── images │ │ └── structure.png │ ├── index.md │ ├── indicators.md │ ├── installation.md │ ├── interfaces.md │ ├── languages │ │ ├── ada │ │ │ ├── concepts.md │ │ │ ├── idioms.md │ │ │ ├── index.md │ │ │ └── reference.md │ │ └── index.md │ ├── license.md │ ├── lobs.md │ ├── logging.md │ ├── multithreading.md │ ├── procedures.md │ ├── queries.md │ ├── quickstart.md │ ├── statements.md │ ├── structure.md │ ├── transactions.md │ ├── types.md │ ├── utilities.md │ └── vagrant.md │ ├── examples │ ├── connect │ │ ├── CMakeLists.txt │ │ └── connect.cpp │ └── subdir-include │ │ ├── CMakeLists.txt │ │ ├── lib │ │ └── soci │ │ │ └── README.md │ │ └── subdir-include.cpp │ ├── include │ ├── private │ │ ├── README.md │ │ ├── firebird │ │ │ ├── common.h │ │ │ └── error-firebird.h │ │ ├── soci-autostatement.h │ │ ├── soci-compiler.h │ │ ├── soci-cpp.h │ │ ├── soci-cstrtod.h │ │ ├── soci-cstrtoi.h │ │ ├── soci-dtocstr.h │ │ ├── soci-exchange-cast.h │ │ ├── soci-mktime.h │ │ ├── soci-static-assert.h │ │ └── soci-vector-helpers.h │ └── soci │ │ ├── backend-loader.h │ │ ├── bind-values.h │ │ ├── blob-exchange.h │ │ ├── blob.h │ │ ├── boost-fusion.h │ │ ├── boost-gregorian-date.h │ │ ├── boost-optional.h │ │ ├── boost-tuple.h │ │ ├── callbacks.h │ │ ├── column-info.h │ │ ├── connection-parameters.h │ │ ├── connection-pool.h │ │ ├── db2 │ │ └── soci-db2.h │ │ ├── empty │ │ └── soci-empty.h │ │ ├── error.h │ │ ├── exchange-traits.h │ │ ├── firebird │ │ └── soci-firebird.h │ │ ├── into-type.h │ │ ├── into.h │ │ ├── logger.h │ │ ├── mysql │ │ └── soci-mysql.h │ │ ├── noreturn.h │ │ ├── odbc │ │ └── soci-odbc.h │ │ ├── once-temp-type.h │ │ ├── oracle │ │ └── soci-oracle.h │ │ ├── postgresql │ │ └── soci-postgresql.h │ │ ├── prepare-temp-type.h │ │ ├── procedure.h │ │ ├── query_transformation.h │ │ ├── ref-counted-prepare-info.h │ │ ├── ref-counted-statement.h │ │ ├── row-exchange.h │ │ ├── row.h │ │ ├── rowid-exchange.h │ │ ├── rowid.h │ │ ├── rowset.h │ │ ├── session.h │ │ ├── soci-backend.h │ │ ├── soci-config.h.in │ │ ├── soci-platform.h │ │ ├── soci-simple.h │ │ ├── soci.h │ │ ├── sqlite3 │ │ └── soci-sqlite3.h │ │ ├── statement.h │ │ ├── transaction.h │ │ ├── type-conversion-traits.h │ │ ├── type-conversion.h │ │ ├── type-holder.h │ │ ├── type-ptr.h │ │ ├── type-wrappers.h │ │ ├── unsigned-types.h │ │ ├── use-type.h │ │ ├── use.h │ │ ├── values-exchange.h │ │ ├── values.h │ │ └── version.h │ ├── languages │ └── ada │ │ ├── postgresql_client.gpr │ │ ├── soci-mysql.ads │ │ ├── soci-oracle.ads │ │ ├── soci-postgresql.ads │ │ ├── soci.adb │ │ ├── soci.ads │ │ ├── soci_ada.gpr │ │ ├── soci_core.gpr │ │ ├── soci_postgresql.gpr │ │ ├── std_cpp.gpr │ │ └── test │ │ ├── postgresql_test.adb │ │ └── postgresql_test.gpr │ ├── mkdocs.yml │ ├── scripts │ ├── build.bat │ ├── ci │ │ ├── before_build.sh │ │ ├── before_build_db2.sh │ │ ├── before_build_firebird.sh │ │ ├── before_build_mysql.sh │ │ ├── before_build_odbc.sh │ │ ├── before_build_oracle.sh │ │ ├── before_build_postgresql.sh │ │ ├── before_build_valgrind.sh │ │ ├── build.sh │ │ ├── build_all.sh │ │ ├── build_db2.sh │ │ ├── build_empty.sh │ │ ├── build_firebird.sh │ │ ├── build_mysql.sh │ │ ├── build_odbc.sh │ │ ├── build_oracle.sh │ │ ├── build_postgresql.sh │ │ ├── build_sqlite3.sh │ │ ├── build_valgrind.sh │ │ ├── common.sh │ │ ├── install.sh │ │ ├── install_db2.sh │ │ ├── install_firebird.sh │ │ ├── install_odbc.sh │ │ ├── install_oracle.sh │ │ ├── install_valgrind.sh │ │ ├── oracle.sh │ │ ├── test.sh │ │ ├── test_db2.sh │ │ ├── test_firebird.sh │ │ ├── test_odbc.sh │ │ └── test_valgrind.sh │ ├── release.sh │ ├── suppress_db2.txt │ ├── suppress_firebird.txt │ ├── vagrant │ │ ├── bootstrap.sh │ │ ├── build.sh │ │ ├── common.env │ │ ├── db2.sh │ │ ├── db2cli.sh │ │ ├── devel.sh │ │ ├── firebird.sh │ │ ├── mysql.sh │ │ └── postgresql.sh │ ├── vm │ │ └── debian-oracle10g-install.sh │ └── windows │ │ ├── Get-ODBCList.ps1 │ │ └── mssql_db_create.sql │ ├── src │ ├── .gitignore │ ├── CMakeLists.txt │ ├── backends │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── db2 │ │ │ ├── CMakeLists.txt │ │ │ ├── blob.cpp │ │ │ ├── common.h │ │ │ ├── factory.cpp │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ ├── empty │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── factory.cpp │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ ├── firebird │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── common.cpp │ │ │ ├── error-firebird.cpp │ │ │ ├── factory.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ ├── mysql │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── factory.cpp │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ ├── odbc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── factory.cpp │ │ │ ├── makefile.msvc │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── utility.h │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ ├── oracle │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── clob.h │ │ │ ├── error.cpp │ │ │ ├── error.h │ │ │ ├── factory.cpp │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ ├── postgresql │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── common.h │ │ │ ├── error.cpp │ │ │ ├── factory.cpp │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ │ └── sqlite3 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.basic │ │ │ ├── blob.cpp │ │ │ ├── common.h │ │ │ ├── error.cpp │ │ │ ├── factory.cpp │ │ │ ├── row-id.cpp │ │ │ ├── session.cpp │ │ │ ├── standard-into-type.cpp │ │ │ ├── standard-use-type.cpp │ │ │ ├── statement.cpp │ │ │ ├── vector-into-type.cpp │ │ │ └── vector-use-type.cpp │ └── core │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.basic │ │ ├── backend-loader.cpp │ │ ├── blob.cpp │ │ ├── common.cpp │ │ ├── connection-parameters.cpp │ │ ├── connection-pool.cpp │ │ ├── error.cpp │ │ ├── into-type.cpp │ │ ├── logger.cpp │ │ ├── once-temp-type.cpp │ │ ├── prepare-temp-type.cpp │ │ ├── procedure.cpp │ │ ├── ref-counted-prepare-info.cpp │ │ ├── ref-counted-statement.cpp │ │ ├── row.cpp │ │ ├── rowid.cpp │ │ ├── session.cpp │ │ ├── soci-simple.cpp │ │ ├── soci_backends_config.h.in │ │ ├── statement.cpp │ │ ├── transaction.cpp │ │ ├── use-type.cpp │ │ └── values.cpp │ ├── tests │ ├── CMakeLists.txt │ ├── README.md │ ├── catch.hpp │ ├── common-tests.h │ ├── db2 │ │ ├── CMakeLists.txt │ │ └── test-db2.cpp │ ├── empty │ │ ├── CMakeLists.txt │ │ └── test-empty.cpp │ ├── firebird │ │ ├── CMakeLists.txt │ │ └── test-firebird.cpp │ ├── mysql │ │ ├── CMakeLists.txt │ │ ├── test-mysql.cpp │ │ └── test-mysql.h │ ├── odbc │ │ ├── CMakeLists.txt │ │ ├── soci_test.mdb │ │ ├── test-mssql.dsn │ │ ├── test-odbc-access.cpp │ │ ├── test-odbc-db2.cpp │ │ ├── test-odbc-mssql.cpp │ │ ├── test-odbc-mysql.cpp │ │ ├── test-odbc-postgresql.cpp │ │ ├── test-postgresql-win64.dsn │ │ └── test-postgresql.dsn │ ├── oracle │ │ ├── CMakeLists.txt │ │ ├── Makefile.basic │ │ └── test-oracle.cpp │ ├── postgresql │ │ ├── CMakeLists.txt │ │ ├── Makefile.basic │ │ └── test-postgresql.cpp │ └── sqlite3 │ │ ├── CMakeLists.txt │ │ ├── Makefile.basic │ │ └── test-sqlite3.cpp │ ├── valgrind.suppress │ └── www │ ├── articles.html │ ├── doc.html │ ├── doc │ ├── README.md │ └── index.html │ ├── events.html │ ├── forkus_github.png │ ├── index.html │ ├── links.html │ ├── people.html │ └── style.css └── version.h.in /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/DCO.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/AddTargetLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/AddTargetLibrary.cmake -------------------------------------------------------------------------------- /cmake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /cmake/GetDate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/GetDate.cmake -------------------------------------------------------------------------------- /cmake/GetGitVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/GetGitVersion.cmake -------------------------------------------------------------------------------- /cmake/MacDeployQt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/MacDeployQt.cmake -------------------------------------------------------------------------------- /cmake/WinDeployQt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/cmake/WinDeployQt.cmake -------------------------------------------------------------------------------- /codevis.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/codevis.desktop -------------------------------------------------------------------------------- /conan/mac_11_profile: -------------------------------------------------------------------------------- 1 | include(Default) 2 | 3 | [settings] 4 | os=Macos 5 | os.version=11.0 6 | -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/conanfile.py -------------------------------------------------------------------------------- /database-spec/cad_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/database-spec/cad_db.sql -------------------------------------------------------------------------------- /database-spec/codebase_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/database-spec/codebase_db.sql -------------------------------------------------------------------------------- /database-spec/databases.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/database-spec/databases.qrc -------------------------------------------------------------------------------- /desktopapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/CMakeLists.txt -------------------------------------------------------------------------------- /desktopapp/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/aboutdialog.cpp -------------------------------------------------------------------------------- /desktopapp/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/aboutdialog.h -------------------------------------------------------------------------------- /desktopapp/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/aboutdialog.ui -------------------------------------------------------------------------------- /desktopapp/apptesting_fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/apptesting_fixture.cpp -------------------------------------------------------------------------------- /desktopapp/apptesting_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/apptesting_fixture.h -------------------------------------------------------------------------------- /desktopapp/codevis_dbus_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/codevis_dbus_interface.cpp -------------------------------------------------------------------------------- /desktopapp/codevis_dbus_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/codevis_dbus_interface.h -------------------------------------------------------------------------------- /desktopapp/dbustest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/dbustest.sh -------------------------------------------------------------------------------- /desktopapp/desktopapp.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/desktopapp.m.cpp -------------------------------------------------------------------------------- /desktopapp/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/mainwindow.cpp -------------------------------------------------------------------------------- /desktopapp/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/mainwindow.h -------------------------------------------------------------------------------- /desktopapp/mainwindow.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/mainwindow.t.cpp -------------------------------------------------------------------------------- /desktopapp/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/mainwindow.ui -------------------------------------------------------------------------------- /desktopapp/projectsettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/projectsettingsdialog.cpp -------------------------------------------------------------------------------- /desktopapp/projectsettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/projectsettingsdialog.h -------------------------------------------------------------------------------- /desktopapp/projectsettingsdialog.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/projectsettingsdialog.t.cpp -------------------------------------------------------------------------------- /desktopapp/projectsettingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/projectsettingsdialog.ui -------------------------------------------------------------------------------- /desktopapp/qt.conf: -------------------------------------------------------------------------------- 1 | [Platforms] 2 | WindowsArguments=dpiawareness=0 3 | 4 | -------------------------------------------------------------------------------- /desktopapp/testcrash.lks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/testcrash.lks -------------------------------------------------------------------------------- /desktopapp/testmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/testmainwindow.cpp -------------------------------------------------------------------------------- /desktopapp/testmainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/desktopapp/testmainwindow.h -------------------------------------------------------------------------------- /doc/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/about.md -------------------------------------------------------------------------------- /doc/build_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/build_linux.md -------------------------------------------------------------------------------- /doc/build_macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/build_macos.md -------------------------------------------------------------------------------- /doc/build_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/build_windows.md -------------------------------------------------------------------------------- /doc/ci_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/ci_windows.md -------------------------------------------------------------------------------- /doc/command_line_codebase_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/command_line_codebase_generation.md -------------------------------------------------------------------------------- /doc/dialog_codebase_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/dialog_codebase_generation.md -------------------------------------------------------------------------------- /doc/externallibraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/externallibraries.md -------------------------------------------------------------------------------- /doc/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/getting_started.md -------------------------------------------------------------------------------- /doc/images/mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/images/mainwindow.png -------------------------------------------------------------------------------- /doc/loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/loading.md -------------------------------------------------------------------------------- /doc/semantic_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/doc/semantic_rules.md -------------------------------------------------------------------------------- /iconset.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/iconset.icns -------------------------------------------------------------------------------- /imgs/ES6-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/ES6-icon.png -------------------------------------------------------------------------------- /imgs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/LICENSE -------------------------------------------------------------------------------- /imgs/add_is_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/add_is_a.png -------------------------------------------------------------------------------- /imgs/add_uses_in_the_implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/add_uses_in_the_implementation.png -------------------------------------------------------------------------------- /imgs/add_uses_in_the_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/add_uses_in_the_interface.png -------------------------------------------------------------------------------- /imgs/app-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/app-icon.ico -------------------------------------------------------------------------------- /imgs/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/app-icon.png -------------------------------------------------------------------------------- /imgs/backwards_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/backwards_dependencies.png -------------------------------------------------------------------------------- /imgs/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/build.png -------------------------------------------------------------------------------- /imgs/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/cancel.png -------------------------------------------------------------------------------- /imgs/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/class.png -------------------------------------------------------------------------------- /imgs/codevis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/codevis.png -------------------------------------------------------------------------------- /imgs/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/component.png -------------------------------------------------------------------------------- /imgs/critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/critical.png -------------------------------------------------------------------------------- /imgs/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/debug.png -------------------------------------------------------------------------------- /imgs/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/down.png -------------------------------------------------------------------------------- /imgs/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/edit.png -------------------------------------------------------------------------------- /imgs/expand-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/expand-icon.png -------------------------------------------------------------------------------- /imgs/external_edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/external_edges.png -------------------------------------------------------------------------------- /imgs/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/eye.png -------------------------------------------------------------------------------- /imgs/fatal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/fatal.png -------------------------------------------------------------------------------- /imgs/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/file.svg -------------------------------------------------------------------------------- /imgs/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/find.png -------------------------------------------------------------------------------- /imgs/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/folder.svg -------------------------------------------------------------------------------- /imgs/forward_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/forward_dependencies.png -------------------------------------------------------------------------------- /imgs/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/go-down.png -------------------------------------------------------------------------------- /imgs/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/go-up.png -------------------------------------------------------------------------------- /imgs/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/group.png -------------------------------------------------------------------------------- /imgs/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/help.png -------------------------------------------------------------------------------- /imgs/identify_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/identify_cycle.png -------------------------------------------------------------------------------- /imgs/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/info.png -------------------------------------------------------------------------------- /imgs/invalid_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/invalid_design.png -------------------------------------------------------------------------------- /imgs/is_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/is_a.png -------------------------------------------------------------------------------- /imgs/loading-buffering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/loading-buffering.gif -------------------------------------------------------------------------------- /imgs/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/map.png -------------------------------------------------------------------------------- /imgs/new_dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/new_dependency.png -------------------------------------------------------------------------------- /imgs/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/notes.png -------------------------------------------------------------------------------- /imgs/open-generated-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/open-generated-code.png -------------------------------------------------------------------------------- /imgs/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/package.png -------------------------------------------------------------------------------- /imgs/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/refresh.png -------------------------------------------------------------------------------- /imgs/remove_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/remove_zoom.png -------------------------------------------------------------------------------- /imgs/reparent_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/reparent_entity.png -------------------------------------------------------------------------------- /imgs/repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/repository.png -------------------------------------------------------------------------------- /imgs/shrink-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/shrink-icon.png -------------------------------------------------------------------------------- /imgs/system-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/system-run.png -------------------------------------------------------------------------------- /imgs/toggle-vis-edit-state-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/toggle-vis-edit-state-edit.png -------------------------------------------------------------------------------- /imgs/toggle-vis-edit-state-vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/toggle-vis-edit-state-vis.png -------------------------------------------------------------------------------- /imgs/toggle-vis-edit.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/toggle-vis-edit.xcf -------------------------------------------------------------------------------- /imgs/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/trash.png -------------------------------------------------------------------------------- /imgs/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/up.png -------------------------------------------------------------------------------- /imgs/uses_in_the_implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/uses_in_the_implementation.png -------------------------------------------------------------------------------- /imgs/uses_in_the_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/uses_in_the_interface.png -------------------------------------------------------------------------------- /imgs/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/warning.png -------------------------------------------------------------------------------- /imgs/yellow-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/yellow-warning.png -------------------------------------------------------------------------------- /imgs/zoom_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/imgs/zoom_selection.png -------------------------------------------------------------------------------- /lvtcgn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/CMakeLists.txt -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_app_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_app_adapter.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_app_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_app_adapter.h -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_app_adapter.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_app_adapter.t.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_codegendialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_codegendialog.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_codegendialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_codegendialog.h -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_codegendialog.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_codegendialog.t.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_codegendialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_codegendialog.ui -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_cogedentreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_cogedentreemodel.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_cogedentreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_cogedentreemodel.h -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_generatecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_generatecode.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_generatecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_generatecode.h -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_generatecode.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_generatecode.t.cpp -------------------------------------------------------------------------------- /lvtcgn/ct_lvtcgn_testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtcgn/ct_lvtcgn_testutils.h -------------------------------------------------------------------------------- /lvtclp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/CMakeLists.txt -------------------------------------------------------------------------------- /lvtclp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/README.md -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_clputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_clputil.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_clputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_clputil.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_clputil.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_clputil.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_compilerutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_compilerutil.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_compilerutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_compilerutil.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_componentutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_componentutil.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_componentutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_componentutil.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_create_codebase_db.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_create_codebase_db.m.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_diagnostic_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_diagnostic_consumer.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_diagnostic_consumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_diagnostic_consumer.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_dumpdatabase.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_dumpdatabase.m.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_filesystemscanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_filesystemscanner.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_filesystemscanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_filesystemscanner.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_filesystemscanner.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_filesystemscanner.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_fileutil.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_fileutil.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_headercallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_headercallbacks.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_headercallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_headercallbacks.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicaldepscanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicaldepscanner.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicaldepscanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicaldepscanner.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicaldepscanner.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicaldepscanner.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicaldepvisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicaldepvisitor.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicaldepvisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicaldepvisitor.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicalpostprocessutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicalpostprocessutil.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_logicalpostprocessutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_logicalpostprocessutil.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_merge_databases.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_merge_databases.m.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_physicaldepscanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_physicaldepscanner.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_physicaldepscanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_physicaldepscanner.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_physicaldepscanner.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_physicaldepscanner.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_staticfnhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_staticfnhandler.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_staticfnhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_staticfnhandler.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testfield.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testfield.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testfunction.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testfunction.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testnamespace.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testnamespace.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testrelationships.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testrelationships.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testsourcefile.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testsourcefile.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testudt.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testudt.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testutil.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testutil.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_testvar.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_testvar.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_tool.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_tool.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_tool.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_tool.t.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_toolexecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_toolexecutor.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_toolexecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_toolexecutor.h -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_visitlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_visitlog.cpp -------------------------------------------------------------------------------- /lvtclp/ct_lvtclp_visitlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/ct_lvtclp_visitlog.h -------------------------------------------------------------------------------- /lvtclp/parse_bde.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/parse_bde.sh.in -------------------------------------------------------------------------------- /lvtclp/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/run_tests.sh -------------------------------------------------------------------------------- /lvtclp/systemtests/classes_within_classes/groups/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(prj) 2 | -------------------------------------------------------------------------------- /lvtclp/systemtests/hello_world/hello.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/systemtests/hello_world/hello.m.cpp -------------------------------------------------------------------------------- /lvtclp/systemtests/project_with_includes_outside_src/prjB/groups/two/twoaaa/twoaaa_comp.cpp: -------------------------------------------------------------------------------- 1 | #include "twoaaa_comp.h" 2 | -------------------------------------------------------------------------------- /lvtclp/systemtests/run_systemtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclp/systemtests/run_systemtests.py -------------------------------------------------------------------------------- /lvtclr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclr/CMakeLists.txt -------------------------------------------------------------------------------- /lvtclr/ct_lvtclr_colormanagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclr/ct_lvtclr_colormanagement.cpp -------------------------------------------------------------------------------- /lvtclr/ct_lvtclr_colormanagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclr/ct_lvtclr_colormanagement.h -------------------------------------------------------------------------------- /lvtclr/ct_lvtclr_colormanagement.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtclr/ct_lvtclr_colormanagement.t.cpp -------------------------------------------------------------------------------- /lvtldr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/CMakeLists.txt -------------------------------------------------------------------------------- /lvtldr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/README.md -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_alloweddependencyloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_alloweddependencyloader.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_componentnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_componentnode.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_componentnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_componentnode.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_componentnodefields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_componentnodefields.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_databasehandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_databasehandler.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_graphloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_graphloader.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_graphloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_graphloader.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_igraphloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_igraphloader.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_igraphloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_igraphloader.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_lakosianedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_lakosianedge.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_lakosianedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_lakosianedge.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_lakosiannode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_lakosiannode.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_lakosiannode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_lakosiannode.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_lakosiannode.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_lakosiannode.t.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_nodestorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_nodestorage.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_nodestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_nodestorage.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_nodestorage.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_nodestorage.t.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_nodestoragetestutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_nodestoragetestutils.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_packagenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_packagenode.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_packagenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_packagenode.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_packagenodefields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_packagenodefields.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_physicalloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_physicalloader.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_physicalloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_physicalloader.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_physicalloader.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_physicalloader.m.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_repositorynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_repositorynode.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_repositorynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_repositorynode.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_repositorynodefields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_repositorynodefields.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_sociutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_sociutils.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_typenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_typenode.cpp -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_typenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_typenode.h -------------------------------------------------------------------------------- /lvtldr/ct_lvtldr_typenodefields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtldr/ct_lvtldr_typenodefields.h -------------------------------------------------------------------------------- /lvtmdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/CMakeLists.txt -------------------------------------------------------------------------------- /lvtmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/README.md -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb.t.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_componentobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_componentobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_componentobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_componentobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_databaseobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_databaseobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_databaseobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_databaseobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_errorobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_errorobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_errorobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_errorobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_fieldobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_fieldobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_fieldobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_fieldobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_fileobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_fileobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_fileobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_functionbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_functionbase.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_functionbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_functionbase.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_functionobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_functionobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_functionobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_functionobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_lockable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_lockable.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_lockable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_lockable.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_methodobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_methodobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_methodobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_namespaceobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_namespaceobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_namespaceobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_objectstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_objectstore.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_objectstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_objectstore.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_packageobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_packageobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_packageobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_packageobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_repositoryobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_repositoryobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_repositoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_repositoryobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_soci_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_soci_helper.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_soci_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_soci_reader.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_soci_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_soci_reader.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_soci_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_soci_writer.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_soci_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_soci_writer.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_typeobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_typeobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_typeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_typeobject.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_util.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_util.h -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_variableobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_variableobject.cpp -------------------------------------------------------------------------------- /lvtmdb/ct_lvtmdb_variableobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdb/ct_lvtmdb_variableobject.h -------------------------------------------------------------------------------- /lvtmdl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/CMakeLists.txt -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_basetablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_basetablemodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_basetablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_basetablemodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_basetreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_basetreemodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_basetreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_basetreemodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_debugmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_debugmodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_debugmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_debugmodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_errorsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_errorsmodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_errorsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_errorsmodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_fieldstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_fieldstablemodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_fieldstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_fieldstablemodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_historylistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_historylistmodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_historylistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_historylistmodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_methodstablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_methodstablemodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_methodstablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_methodstablemodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_modelhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_modelhelpers.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_modelhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_modelhelpers.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_modelhelpers.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_modelhelpers.t.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_namespacetreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_namespacetreemodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_namespacetreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_namespacetreemodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_packagetreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_packagetreemodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_packagetreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_packagetreemodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_physicaltablemodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_physicaltablemodels.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_physicaltablemodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_physicaltablemodels.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_simpletextmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_simpletextmodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_simpletextmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_simpletextmodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_treefiltermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_treefiltermodel.cpp -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_treefiltermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_treefiltermodel.h -------------------------------------------------------------------------------- /lvtmdl/ct_lvtmdl_usesintheimpltablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtmdl/ct_lvtmdl_usesintheimpltablemodel.h -------------------------------------------------------------------------------- /lvtplg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/CMakeLists.txt -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_basicpluginhooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_basicpluginhooks.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_handlercontextmenuaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_handlercontextmenuaction.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_handlerdockwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_handlerdockwidget.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_handlerentityreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_handlerentityreport.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_handlergraphicsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_handlergraphicsview.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_handlersetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_handlersetup.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_handlertreewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_handlertreewidget.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_plugindatatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_plugindatatypes.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_pluginmanager.cpp -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_pluginmanager.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_pythonlibrarydispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_pythonlibrarydispatcher.h -------------------------------------------------------------------------------- /lvtplg/ct_lvtplg_sharedlibrarydispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/ct_lvtplg_sharedlibrarydispatcher.h -------------------------------------------------------------------------------- /lvtplg/generate_plugin_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtplg/generate_plugin_hooks.py -------------------------------------------------------------------------------- /lvtprj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtprj/CMakeLists.txt -------------------------------------------------------------------------------- /lvtprj/ct_lvtprj_create_prj_from_db.m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtprj/ct_lvtprj_create_prj_from_db.m.cpp -------------------------------------------------------------------------------- /lvtprj/ct_lvtprj_projectfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtprj/ct_lvtprj_projectfile.cpp -------------------------------------------------------------------------------- /lvtprj/ct_lvtprj_projectfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtprj/ct_lvtprj_projectfile.h -------------------------------------------------------------------------------- /lvtprj/ct_lvtprj_projectfile.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtprj/ct_lvtprj_projectfile.t.cpp -------------------------------------------------------------------------------- /lvtqtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/CMakeLists.txt -------------------------------------------------------------------------------- /lvtqtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/README.md -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_alg_level_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_alg_level_layout.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_alg_level_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_alg_level_layout.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_alg_transitive_reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_alg_transitive_reduction.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_componententity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_componententity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_componententity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_componententity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_edge_based_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_edge_based_tool.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_edge_based_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_edge_based_tool.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_edgecollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_edgecollection.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_edgecollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_edgecollection.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_ellipsistextitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_ellipsistextitem.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_ellipsistextitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_ellipsistextitem.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_ellipsistextitem.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_ellipsistextitem.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsrectitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsrectitem.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsrectitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsrectitem.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsscene.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsscene.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsscene.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsscene.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsview.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsview.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_graphicsview.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_graphicsview.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_iconhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_iconhelpers.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_iconhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_iconhelpers.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_inputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_inputdialog.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_inputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_inputdialog.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_inputdialog.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_inputdialog.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_isa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_isa.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_isa.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_itool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_itool.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_itool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_itool.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosentity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosentity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosentity.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosentity.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosentitypluginutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosentitypluginutils.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosentitypluginutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosentitypluginutils.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosrelation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosrelation.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_lakosrelation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_lakosrelation.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_logicalentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_logicalentity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_logicalentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_logicalentity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_minimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_minimap.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_minimap.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_packagedependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_packagedependency.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_packagedependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_packagedependency.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_packagedependency.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_packagedependency.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_packageentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_packageentity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_packageentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_packageentity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_pluginmanagerutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_pluginmanagerutils.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_pluginmanagerutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_pluginmanagerutils.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_repositoryentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_repositoryentity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_repositoryentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_repositoryentity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_testing_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_testing_utils.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_testing_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_testing_utils.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_component.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_component.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_component.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_component.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_entity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_entity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_logical_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_logical_entity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_package.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_package.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_add_package.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_add_package.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_reparent_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_reparent_entity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_reparent_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_reparent_entity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_reparent_entity.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_reparent_entity.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_rubberband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_rubberband.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_rubberband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_rubberband.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_zoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_zoom.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tool_zoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tool_zoom.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tooltip.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_tooltip.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_component.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_component.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_component.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_component.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_edge.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_edge.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_entity_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_entity_common.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_entity_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_entity_common.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_logicalentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_logicalentity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_logicalentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_logicalentity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_package.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_package.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_add_package.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_add_package.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_cover.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_cover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_cover.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_expand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_expand.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_expand.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_load_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_load_entity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_load_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_load_entity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_load_entity.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_load_entity.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_manager.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_manager.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_move.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_move.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_move.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_move.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_notes.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_notes.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_notes.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_notes.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_rename_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_rename_entity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_rename_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_rename_entity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_rename_entity.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_rename_entity.t.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_reparent_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_reparent_entity.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_undo_reparent_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_undo_reparent_entity.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_usesinnameonly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_usesinnameonly.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_usesinnameonly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_usesinnameonly.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_usesintheimplementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_usesintheimplementation.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_usesintheinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_usesintheinterface.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_usesintheinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_usesintheinterface.h -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_util.cpp -------------------------------------------------------------------------------- /lvtqtc/ct_lvtqtc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtc/ct_lvtqtc_util.h -------------------------------------------------------------------------------- /lvtqtd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtd/CMakeLists.txt -------------------------------------------------------------------------------- /lvtqtd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtd/README.md -------------------------------------------------------------------------------- /lvtqtd/ct_lvtqtd_packageviewdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtd/ct_lvtqtd_packageviewdelegate.cpp -------------------------------------------------------------------------------- /lvtqtd/ct_lvtqtd_packageviewdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtd/ct_lvtqtd_packageviewdelegate.h -------------------------------------------------------------------------------- /lvtqtd/ct_lvtqtd_removedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtd/ct_lvtqtd_removedelegate.cpp -------------------------------------------------------------------------------- /lvtqtd/ct_lvtqtd_removedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtd/ct_lvtqtd_removedelegate.h -------------------------------------------------------------------------------- /lvtqtw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/CMakeLists.txt -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_backgroundeventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_backgroundeventfilter.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_backgroundeventfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_backgroundeventfilter.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_configurationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_configurationdialog.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_configurationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_configurationdialog.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_configurationdialog.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_configurationdialog.t.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_configurationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_configurationdialog.ui -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_cycletreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_cycletreeview.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_cycletreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_cycletreeview.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_errorview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_errorview.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_errorview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_errorview.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_errorview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_errorview.ui -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_exportmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_exportmanager.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_exportmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_exportmanager.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_exportmanager.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_exportmanager.t.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_graphtabelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_graphtabelement.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_graphtabelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_graphtabelement.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_graphtabelement.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_graphtabelement.ui -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_modifierhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_modifierhelpers.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_modifierhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_modifierhelpers.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_namespacetreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_namespacetreeview.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_namespacetreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_namespacetreeview.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_parse_codebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_parse_codebase.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_parse_codebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_parse_codebase.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_parse_codebase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_parse_codebase.ui -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_searchwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_searchwidget.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_searchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_searchwidget.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_searchwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_searchwidget.ui -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_splitterview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_splitterview.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_splitterview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_splitterview.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_statusbar.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_statusbar.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_statusbar.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_statusbar.t.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_tabwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_tabwidget.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_tabwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_tabwidget.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_tabwidget.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_tabwidget.t.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_textview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_textview.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_textview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_textview.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_textview.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_textview.t.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_toolbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_toolbox.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_toolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_toolbox.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_treeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_treeview.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_treeview.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_welcomescreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_welcomescreen.cpp -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_welcomescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_welcomescreen.h -------------------------------------------------------------------------------- /lvtqtw/ct_lvtqtw_welcomewidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtqtw/ct_lvtqtw_welcomewidget.ui -------------------------------------------------------------------------------- /lvtshr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/CMakeLists.txt -------------------------------------------------------------------------------- /lvtshr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/README.md -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_functional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_functional.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_functional.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_fuzzyutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_fuzzyutil.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_fuzzyutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_fuzzyutil.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_fuzzyutil.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_fuzzyutil.t.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_graphenums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_graphenums.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_graphenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_graphenums.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_graphstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_graphstorage.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_graphstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_graphstorage.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_iterator.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_iterator.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_iterator.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_iterator.t.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_loaderinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_loaderinfo.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_loaderinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_loaderinfo.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_stringhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_stringhelpers.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_stringhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_stringhelpers.h -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_stringhelpers.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_stringhelpers.t.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_uniqueid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_uniqueid.cpp -------------------------------------------------------------------------------- /lvtshr/ct_lvtshr_uniqueid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvtshr/ct_lvtshr_uniqueid.h -------------------------------------------------------------------------------- /lvttst/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/CMakeLists.txt -------------------------------------------------------------------------------- /lvttst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/README.md -------------------------------------------------------------------------------- /lvttst/ct_lvttst_fixture_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_fixture_qt.cpp -------------------------------------------------------------------------------- /lvttst/ct_lvttst_fixture_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_fixture_qt.h -------------------------------------------------------------------------------- /lvttst/ct_lvttst_main.t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_main.t.cpp -------------------------------------------------------------------------------- /lvttst/ct_lvttst_osstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_osstream.cpp -------------------------------------------------------------------------------- /lvttst/ct_lvttst_osstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_osstream.h -------------------------------------------------------------------------------- /lvttst/ct_lvttst_testcfgoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_testcfgoptions.cpp -------------------------------------------------------------------------------- /lvttst/ct_lvttst_testcfgoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_testcfgoptions.h -------------------------------------------------------------------------------- /lvttst/ct_lvttst_tmpdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_tmpdir.cpp -------------------------------------------------------------------------------- /lvttst/ct_lvttst_tmpdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/lvttst/ct_lvttst_tmpdir.h -------------------------------------------------------------------------------- /news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/news.html -------------------------------------------------------------------------------- /packaging/appimage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/appimage/Dockerfile -------------------------------------------------------------------------------- /packaging/bundle-src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/bundle-src/Dockerfile -------------------------------------------------------------------------------- /packaging/centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/centos7/Dockerfile -------------------------------------------------------------------------------- /packaging/macos/llvm-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/macos/llvm-build.sh -------------------------------------------------------------------------------- /packaging/windows/applicationicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/windows/applicationicon.rc -------------------------------------------------------------------------------- /packaging/windows/llvm-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/windows/llvm-build.bat -------------------------------------------------------------------------------- /packaging/windows/run-tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/packaging/windows/run-tests.bat -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/code_coverage_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/plugins/code_coverage_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/code_coverage_plugin/README.md: -------------------------------------------------------------------------------- 1 | Code Coverage Plugin 2 | === 3 | 4 | TODO: Description -------------------------------------------------------------------------------- /plugins/code_coverage_plugin/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/plugins/code_coverage_plugin/plugin.cpp -------------------------------------------------------------------------------- /plugins/cycle_detection_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/plugins/cycle_detection_plugin/README.md -------------------------------------------------------------------------------- /plugins/cycle_detection_plugin/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/plugins/cycle_detection_plugin/plugin.cpp -------------------------------------------------------------------------------- /preferences.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/preferences.conf -------------------------------------------------------------------------------- /preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/preferences.cpp -------------------------------------------------------------------------------- /preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/preferences.h -------------------------------------------------------------------------------- /project_tests/bjg_wrong_cmake/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/project_tests/bjg_wrong_cmake/readme.txt -------------------------------------------------------------------------------- /python-win-deps/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/codegeneration/cmake/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /qml/README.md: -------------------------------------------------------------------------------- 1 | Placeholder directory for qml 2 | -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/resources.qrc -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/ci/cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/ci/cppcheck.sh -------------------------------------------------------------------------------- /scripts/ci/scan-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/ci/scan-build.sh -------------------------------------------------------------------------------- /scripts/clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/clang-format.sh -------------------------------------------------------------------------------- /scripts/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/clang-tidy.sh -------------------------------------------------------------------------------- /scripts/clazy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/clazy.sh -------------------------------------------------------------------------------- /scripts/docker/parse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/docker/parse.sh -------------------------------------------------------------------------------- /scripts/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/docker/run.sh -------------------------------------------------------------------------------- /scripts/multi_db_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/multi_db_merge.py -------------------------------------------------------------------------------- /scripts/packaging/build-cli-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/packaging/build-cli-package.sh -------------------------------------------------------------------------------- /scripts/packaging/build-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/scripts/packaging/build-package.sh -------------------------------------------------------------------------------- /semrules/Boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Boost.py -------------------------------------------------------------------------------- /semrules/Catch2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Catch2.py -------------------------------------------------------------------------------- /semrules/GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/GL.py -------------------------------------------------------------------------------- /semrules/Kate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Kate.py -------------------------------------------------------------------------------- /semrules/Kf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Kf5.py -------------------------------------------------------------------------------- /semrules/Konsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Konsole.py -------------------------------------------------------------------------------- /semrules/LLVM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/LLVM.py -------------------------------------------------------------------------------- /semrules/MRichTextEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/MRichTextEditor.py -------------------------------------------------------------------------------- /semrules/QMobipocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/QMobipocket.py -------------------------------------------------------------------------------- /semrules/Qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Qt.py -------------------------------------------------------------------------------- /semrules/QtCrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/QtCrypto.py -------------------------------------------------------------------------------- /semrules/Quazip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Quazip.py -------------------------------------------------------------------------------- /semrules/SDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/SDL.py -------------------------------------------------------------------------------- /semrules/System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/System.py -------------------------------------------------------------------------------- /semrules/Wt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/Wt.py -------------------------------------------------------------------------------- /semrules/ZZ-System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/ZZ-System.py -------------------------------------------------------------------------------- /semrules/codevis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/codevis.py -------------------------------------------------------------------------------- /semrules/configuration-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/configuration-parser.py -------------------------------------------------------------------------------- /semrules/cppresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/cppresult.py -------------------------------------------------------------------------------- /semrules/cpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/cpython.py -------------------------------------------------------------------------------- /semrules/dbusmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/dbusmenu.py -------------------------------------------------------------------------------- /semrules/epoxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/epoxy.py -------------------------------------------------------------------------------- /semrules/epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/epub.py -------------------------------------------------------------------------------- /semrules/exiv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/exiv2.py -------------------------------------------------------------------------------- /semrules/gpgmepp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/gpgmepp.py -------------------------------------------------------------------------------- /semrules/kcachegrind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/kcachegrind.py -------------------------------------------------------------------------------- /semrules/kwidgetsaddons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/kwidgetsaddons.py -------------------------------------------------------------------------------- /semrules/lakosdiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/lakosdiagram.py -------------------------------------------------------------------------------- /semrules/libexslt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/libexslt.py -------------------------------------------------------------------------------- /semrules/libmount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/libmount.py -------------------------------------------------------------------------------- /semrules/libxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/libxml.py -------------------------------------------------------------------------------- /semrules/libxslt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/libxslt.py -------------------------------------------------------------------------------- /semrules/lks_sqlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/lks_sqlite3.py -------------------------------------------------------------------------------- /semrules/lzmacpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/lzmacpp.py -------------------------------------------------------------------------------- /semrules/micro16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/micro16.py -------------------------------------------------------------------------------- /semrules/oup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/oup.py -------------------------------------------------------------------------------- /semrules/phonon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/phonon.py -------------------------------------------------------------------------------- /semrules/polkit-qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/polkit-qt.py -------------------------------------------------------------------------------- /semrules/pybind11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/pybind11.py -------------------------------------------------------------------------------- /semrules/taglib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/taglib.py -------------------------------------------------------------------------------- /semrules/wayland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/wayland.py -------------------------------------------------------------------------------- /semrules/x11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/semrules/x11.py -------------------------------------------------------------------------------- /submodules/LICENSES/LICENSE-backward-cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/LICENSES/LICENSE-backward-cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: LLVM 3 | -------------------------------------------------------------------------------- /submodules/backward-cpp/.gitignore: -------------------------------------------------------------------------------- 1 | build*/ 2 | *.pyc 3 | *.sw? 4 | -------------------------------------------------------------------------------- /submodules/backward-cpp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/.travis.yml -------------------------------------------------------------------------------- /submodules/backward-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /submodules/backward-cpp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/LICENSE.txt -------------------------------------------------------------------------------- /submodules/backward-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/README.md -------------------------------------------------------------------------------- /submodules/backward-cpp/backward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/backward.cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/backward.hpp -------------------------------------------------------------------------------- /submodules/backward-cpp/builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/builds.sh -------------------------------------------------------------------------------- /submodules/backward-cpp/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/conanfile.py -------------------------------------------------------------------------------- /submodules/backward-cpp/doc/nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/doc/nice.png -------------------------------------------------------------------------------- /submodules/backward-cpp/doc/pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/doc/pretty.png -------------------------------------------------------------------------------- /submodules/backward-cpp/doc/rude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/doc/rude.png -------------------------------------------------------------------------------- /submodules/backward-cpp/test/_test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/test/_test_main.cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/test/rectrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/test/rectrace.cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/test/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/test/stacktrace.cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/test/suicide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/test/suicide.cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/test/test.cpp -------------------------------------------------------------------------------- /submodules/backward-cpp/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/backward-cpp/test/test.hpp -------------------------------------------------------------------------------- /submodules/configuration-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/configuration-parser/.gitignore -------------------------------------------------------------------------------- /submodules/configuration-parser/.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/configuration-parser/.reuse/dep5 -------------------------------------------------------------------------------- /submodules/configuration-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/configuration-parser/README.md -------------------------------------------------------------------------------- /submodules/configuration-parser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/submodules/configuration-parser/main.cpp -------------------------------------------------------------------------------- /submodules/configuration-parser/test/test-empty-prefs.conf: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | Preferences { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /submodules/configuration-parser/test/test.cpp: -------------------------------------------------------------------------------- 1 | int main() {} 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: Never 4 | -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/LICENSE.LGPL -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/README.md -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/mrichtextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/mrichtextedit.h -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/mrichtextedit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/mrichtextedit.ui -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/mtextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/mtextedit.cpp -------------------------------------------------------------------------------- /thirdparty/MRichTextEditor/mtextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/MRichTextEditor/mtextedit.h -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/LICENSE.LGPL -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/fonthelpers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/fonthelpers_p.h -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/kcolorbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/kcolorbutton.cpp -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/kcolorbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/kcolorbutton.h -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/kfontchooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/kfontchooser.cpp -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/kfontchooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/kfontchooser.h -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/kfontrequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/kfontrequester.h -------------------------------------------------------------------------------- /thirdparty/kwidgetsaddons/kmessagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/kwidgetsaddons/kmessagewidget.h -------------------------------------------------------------------------------- /thirdparty/oup/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: Never 4 | -------------------------------------------------------------------------------- /thirdparty/oup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/oup/LICENSE -------------------------------------------------------------------------------- /thirdparty/oup/observable_unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/oup/observable_unique_ptr.hpp -------------------------------------------------------------------------------- /thirdparty/pybind11/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: Never 4 | -------------------------------------------------------------------------------- /thirdparty/pybind11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/LICENSE -------------------------------------------------------------------------------- /thirdparty/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/attr.h -------------------------------------------------------------------------------- /thirdparty/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/buffer_info.h -------------------------------------------------------------------------------- /thirdparty/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/cast.h -------------------------------------------------------------------------------- /thirdparty/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/chrono.h -------------------------------------------------------------------------------- /thirdparty/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/common.h -------------------------------------------------------------------------------- /thirdparty/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/complex.h -------------------------------------------------------------------------------- /thirdparty/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/detail/class.h -------------------------------------------------------------------------------- /thirdparty/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/detail/common.h -------------------------------------------------------------------------------- /thirdparty/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/detail/descr.h -------------------------------------------------------------------------------- /thirdparty/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/detail/init.h -------------------------------------------------------------------------------- /thirdparty/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/detail/internals.h -------------------------------------------------------------------------------- /thirdparty/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /thirdparty/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/eigen.h -------------------------------------------------------------------------------- /thirdparty/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/embed.h -------------------------------------------------------------------------------- /thirdparty/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/eval.h -------------------------------------------------------------------------------- /thirdparty/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/functional.h -------------------------------------------------------------------------------- /thirdparty/pybind11/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/gil.h -------------------------------------------------------------------------------- /thirdparty/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/iostream.h -------------------------------------------------------------------------------- /thirdparty/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/numpy.h -------------------------------------------------------------------------------- /thirdparty/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/operators.h -------------------------------------------------------------------------------- /thirdparty/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/options.h -------------------------------------------------------------------------------- /thirdparty/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/pybind11.h -------------------------------------------------------------------------------- /thirdparty/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/pytypes.h -------------------------------------------------------------------------------- /thirdparty/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/stl.h -------------------------------------------------------------------------------- /thirdparty/pybind11/stl/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/stl/filesystem.h -------------------------------------------------------------------------------- /thirdparty/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/pybind11/stl_bind.h -------------------------------------------------------------------------------- /thirdparty/quazip/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/.editorconfig -------------------------------------------------------------------------------- /thirdparty/quazip/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/.gitattributes -------------------------------------------------------------------------------- /thirdparty/quazip/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/.github/workflows/ci.yml -------------------------------------------------------------------------------- /thirdparty/quazip/.gitignore: -------------------------------------------------------------------------------- 1 | /doc 2 | /build 3 | *.user 4 | -------------------------------------------------------------------------------- /thirdparty/quazip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/quazip/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/CONTRIBUTING.md -------------------------------------------------------------------------------- /thirdparty/quazip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/COPYING -------------------------------------------------------------------------------- /thirdparty/quazip/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/Doxyfile -------------------------------------------------------------------------------- /thirdparty/quazip/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/NEWS.txt -------------------------------------------------------------------------------- /thirdparty/quazip/QuaZip-1.x-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/QuaZip-1.x-migration.md -------------------------------------------------------------------------------- /thirdparty/quazip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/README.md -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/JlCompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/JlCompress.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/JlCompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/JlCompress.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/doc/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/doc/faq.dox -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/doc/index.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/doc/index.dox -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/doc/usage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/doc/usage.dox -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/ioapi.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/minizip_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/minizip_crypt.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/qioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/qioapi.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quaadler32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quaadler32.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quaadler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quaadler32.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quachecksum32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quachecksum32.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quachecksum32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quachecksum32.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quacrc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quacrc32.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quacrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quacrc32.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quagzipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quagzipfile.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quagzipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quagzipfile.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quaziodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quaziodevice.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quaziodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quaziodevice.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazip.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazip.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazip.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazip.pc.cmakein -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazip_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazip_global.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazip_qt_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazip_qt_compat.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipdir.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipdir.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipfile.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipfile.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipfileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipfileinfo.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipfileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipfileinfo.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipnewinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipnewinfo.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/quazipnewinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/quazipnewinfo.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/unzip.c -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/unzip.h -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/zip.c -------------------------------------------------------------------------------- /thirdparty/quazip/quazip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/quazip/zip.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/qztest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/qztest.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/qztest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/qztest.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/qztest.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/qztest.qrc -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testjlcompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testjlcompress.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testjlcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testjlcompress.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquagzipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquagzipfile.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquaziodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquaziodevice.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquazip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquazip.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquazip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquazip.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquazipdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquazipdir.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquazipdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquazipdir.h -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquazipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquazipfile.cpp -------------------------------------------------------------------------------- /thirdparty/quazip/qztest/testquazipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/quazip/qztest/testquazipfile.h -------------------------------------------------------------------------------- /thirdparty/result/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | DisableFormat: true 3 | SortIncludes: Never 4 | -------------------------------------------------------------------------------- /thirdparty/result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/result/LICENSE -------------------------------------------------------------------------------- /thirdparty/result/README.md: -------------------------------------------------------------------------------- 1 | https://github.com/bitwizeshift/result 2 | -------------------------------------------------------------------------------- /thirdparty/result/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/result/result.hpp -------------------------------------------------------------------------------- /thirdparty/soci/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/.circleci/config.yml -------------------------------------------------------------------------------- /thirdparty/soci/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/.editorconfig -------------------------------------------------------------------------------- /thirdparty/soci/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/.gitattributes -------------------------------------------------------------------------------- /thirdparty/soci/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/.github/workflows/ci.yml -------------------------------------------------------------------------------- /thirdparty/soci/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/.gitignore -------------------------------------------------------------------------------- /thirdparty/soci/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/.markdownlint.json -------------------------------------------------------------------------------- /thirdparty/soci/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/AUTHORS -------------------------------------------------------------------------------- /thirdparty/soci/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/CHANGES -------------------------------------------------------------------------------- /thirdparty/soci/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soci/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/LICENSE_1_0.txt -------------------------------------------------------------------------------- /thirdparty/soci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/README.md -------------------------------------------------------------------------------- /thirdparty/soci/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/RELEASING.md -------------------------------------------------------------------------------- /thirdparty/soci/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/TODO -------------------------------------------------------------------------------- /thirdparty/soci/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/Vagrantfile -------------------------------------------------------------------------------- /thirdparty/soci/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/appveyor.yml -------------------------------------------------------------------------------- /thirdparty/soci/cmake/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/.gitignore -------------------------------------------------------------------------------- /thirdparty/soci/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soci/cmake/SociBackend.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/SociBackend.cmake -------------------------------------------------------------------------------- /thirdparty/soci/cmake/SociConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/SociConfig.cmake -------------------------------------------------------------------------------- /thirdparty/soci/cmake/SociUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/SociUtilities.cmake -------------------------------------------------------------------------------- /thirdparty/soci/cmake/SociVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/SociVersion.cmake -------------------------------------------------------------------------------- /thirdparty/soci/cmake/modules/FindDB2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/modules/FindDB2.cmake -------------------------------------------------------------------------------- /thirdparty/soci/cmake/modules/FindDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/cmake/modules/FindDL.cmake -------------------------------------------------------------------------------- /thirdparty/soci/cmake/resources/SOCIConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include(${CMAKE_CURRENT_LIST_DIR}/SOCITargets.cmake) 4 | -------------------------------------------------------------------------------- /thirdparty/soci/docs/api/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/api/backend.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/api/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/api/client.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/db2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/db2.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/firebird.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/firebird.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/index.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/mysql.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/odbc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/odbc.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/oracle.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/postgresql.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/backends/sqlite3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/backends/sqlite3.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/beyond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/beyond.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/binding.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/boost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/boost.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/connections.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/errors.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/faq.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/images/structure.png -------------------------------------------------------------------------------- /thirdparty/soci/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/index.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/indicators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/indicators.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/installation.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/interfaces.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/languages/ada/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/languages/ada/index.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/languages/index.md: -------------------------------------------------------------------------------- 1 | # Language bindings 2 | 3 | * [Ada](ada/index.md) 4 | -------------------------------------------------------------------------------- /thirdparty/soci/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/license.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/lobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/lobs.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/logging.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/multithreading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/multithreading.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/procedures.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/queries.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/quickstart.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/statements.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/structure.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/transactions.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/types.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/utilities.md -------------------------------------------------------------------------------- /thirdparty/soci/docs/vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/docs/vagrant.md -------------------------------------------------------------------------------- /thirdparty/soci/include/private/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/private/README.md -------------------------------------------------------------------------------- /thirdparty/soci/include/private/soci-cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/private/soci-cpp.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/bind-values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/bind-values.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/blob.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/boost-fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/boost-fusion.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/boost-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/boost-tuple.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/callbacks.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/column-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/column-info.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/db2/soci-db2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/db2/soci-db2.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/error.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/into-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/into-type.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/into.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/into.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/logger.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/noreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/noreturn.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/procedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/procedure.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/row-exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/row-exchange.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/row.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/rowid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/rowid.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/rowset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/rowset.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/session.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/soci-backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/soci-backend.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/soci-simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/soci-simple.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/soci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/soci.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/statement.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/transaction.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/type-holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/type-holder.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/type-ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/type-ptr.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/use-type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/use-type.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/use.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/values.h -------------------------------------------------------------------------------- /thirdparty/soci/include/soci/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/include/soci/version.h -------------------------------------------------------------------------------- /thirdparty/soci/languages/ada/soci.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/languages/ada/soci.adb -------------------------------------------------------------------------------- /thirdparty/soci/languages/ada/soci.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/languages/ada/soci.ads -------------------------------------------------------------------------------- /thirdparty/soci/languages/ada/soci_ada.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/languages/ada/soci_ada.gpr -------------------------------------------------------------------------------- /thirdparty/soci/languages/ada/soci_core.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/languages/ada/soci_core.gpr -------------------------------------------------------------------------------- /thirdparty/soci/languages/ada/std_cpp.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/languages/ada/std_cpp.gpr -------------------------------------------------------------------------------- /thirdparty/soci/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/mkdocs.yml -------------------------------------------------------------------------------- /thirdparty/soci/scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/build.bat -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/before_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/before_build.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_all.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_db2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_db2.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_empty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_empty.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_mysql.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_odbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_odbc.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_oracle.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/build_sqlite3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/build_sqlite3.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/common.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/install.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/install_db2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/install_db2.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/install_odbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/install_odbc.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/oracle.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/test.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/test_db2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/test_db2.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/ci/test_odbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/ci/test_odbc.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/release.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/suppress_db2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/suppress_db2.txt -------------------------------------------------------------------------------- /thirdparty/soci/scripts/vagrant/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/vagrant/build.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/vagrant/db2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/vagrant/db2.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/vagrant/devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/vagrant/devel.sh -------------------------------------------------------------------------------- /thirdparty/soci/scripts/vagrant/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/scripts/vagrant/mysql.sh -------------------------------------------------------------------------------- /thirdparty/soci/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/.gitignore -------------------------------------------------------------------------------- /thirdparty/soci/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soci/src/backends/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/backends/.gitignore -------------------------------------------------------------------------------- /thirdparty/soci/src/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/.gitignore -------------------------------------------------------------------------------- /thirdparty/soci/src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soci/src/core/Makefile.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/Makefile.basic -------------------------------------------------------------------------------- /thirdparty/soci/src/core/blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/blob.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/common.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/error.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/into-type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/into-type.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/logger.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/procedure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/procedure.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/row.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/rowid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/rowid.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/session.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/soci-simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/soci-simple.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/statement.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/transaction.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/use-type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/use-type.cpp -------------------------------------------------------------------------------- /thirdparty/soci/src/core/values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/src/core/values.cpp -------------------------------------------------------------------------------- /thirdparty/soci/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soci/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/README.md -------------------------------------------------------------------------------- /thirdparty/soci/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/catch.hpp -------------------------------------------------------------------------------- /thirdparty/soci/tests/common-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/common-tests.h -------------------------------------------------------------------------------- /thirdparty/soci/tests/db2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/db2/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/soci/tests/db2/test-db2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/db2/test-db2.cpp -------------------------------------------------------------------------------- /thirdparty/soci/tests/mysql/test-mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/mysql/test-mysql.h -------------------------------------------------------------------------------- /thirdparty/soci/tests/odbc/soci_test.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/tests/odbc/soci_test.mdb -------------------------------------------------------------------------------- /thirdparty/soci/valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/valgrind.suppress -------------------------------------------------------------------------------- /thirdparty/soci/www/articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/articles.html -------------------------------------------------------------------------------- /thirdparty/soci/www/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/doc.html -------------------------------------------------------------------------------- /thirdparty/soci/www/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/doc/README.md -------------------------------------------------------------------------------- /thirdparty/soci/www/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/doc/index.html -------------------------------------------------------------------------------- /thirdparty/soci/www/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/events.html -------------------------------------------------------------------------------- /thirdparty/soci/www/forkus_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/forkus_github.png -------------------------------------------------------------------------------- /thirdparty/soci/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/index.html -------------------------------------------------------------------------------- /thirdparty/soci/www/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/links.html -------------------------------------------------------------------------------- /thirdparty/soci/www/people.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/people.html -------------------------------------------------------------------------------- /thirdparty/soci/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/thirdparty/soci/www/style.css -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/codevis/HEAD/version.h.in --------------------------------------------------------------------------------