// utils.h
.../**
* @brief Retrieves the path to the manifest data.
*
* This function returns the full path to the manifest file used by the application.
*
* @return A QString containing the manifest file path.
*/Q_INVOKABLEQStringmanifestPath();...// utils.cpp
QStringUtils::manifestPath(){autopath=QDir(QDir::currentPath()).filePath("manifest_.json");qInfo()<<"Manifest path : "<<path;returnpath;}