# qqutils **Repository Path**: spark-framework-libs/qqutils ## Basic Information - **Project Name**: qqutils - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-09 - **Last Updated**: 2025-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # qt.template ## Quick use ```sh # clone or create your project git init git fetch https://gitee.com/zinface/qt.template master:template git checkout template -b master git branch -d template ``` - 快速使用 ```cmake spark_framework_include_with_git(${PROJECT_NAME} https://gitee.com/spark-framework-libs/qqutils ) ``` ```c++ #include #include int main(int argc, char *argv[]) { QTextStream in(stdin); QList messages = QQUtils::parseMessage(in.readAll()); qDebug() << QString("解析成功: 共 %1 条消息").arg(messages.length()); } ``` ```sh # 参考使用 cat qqmessage.txt | qqmessage.exe # "解析成功: 共 7 条消息" ```