├── .github ├── FUNDING.yml └── workflows │ └── c-cpp.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets ├── 1747996785328.png ├── demo.png ├── flow.puml ├── logo.svg ├── qrcode_1747839744296.jpg └── 灵取证系统流程图.png ├── controller ├── controller.cpp └── controller.h ├── main.cpp ├── makefile ├── model.cpp ├── model ├── model.cpp └── model.h └── view ├── view.cpp └── view.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/README.md -------------------------------------------------------------------------------- /assets/1747996785328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/assets/1747996785328.png -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/flow.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/assets/flow.puml -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/qrcode_1747839744296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/assets/qrcode_1747839744296.jpg -------------------------------------------------------------------------------- /assets/灵取证系统流程图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/assets/灵取证系统流程图.png -------------------------------------------------------------------------------- /controller/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/controller/controller.cpp -------------------------------------------------------------------------------- /controller/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/controller/controller.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/main.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/makefile -------------------------------------------------------------------------------- /model.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/model/model.cpp -------------------------------------------------------------------------------- /model/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/model/model.h -------------------------------------------------------------------------------- /view/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/view/view.cpp -------------------------------------------------------------------------------- /view/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctkqiang/LQZ/HEAD/view/view.h --------------------------------------------------------------------------------