File indexing completed on 2024-04-28 06:00:06

0001 #include <string>
0002 #include <QtGlobal>
0003 
0004 struct Version {
0005     const std::string hash = GIT_VERSION;
0006     const std::string date = GIT_VERSION_DATE;
0007     const std::string url = GIT_URL;
0008     const std::string qtVersion = qVersion();
0009 };