summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_qtscxml_module/main.cpp
blob: 5bf7e3de8bee596ecda7bebcd34e1a56a91c08ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "connection.h"

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

  Connection connection;
  Q_UNUSED(connection);
  return 0;
}