summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qtjsonrpc_module/main.cpp
blob: 4b8ee8a98cf3af9133e5a65727bcc5933e60f3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <private/qjsonrpcprotocol_p.h>

int main(int argc, char **argv)
{
    Q_UNUSED(argc);
    Q_UNUSED(argv);

    QJsonRpcProtocol protocol;
    Q_UNUSED(protocol);
    return 0;
}