summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_modules/server/axserver.cpp
blob: f03ed21e3ba860fae0f4c6531b7d2f19e2ea5c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <qt_windows.h>
#include <QAxFactory>
#include <QtAxServer/QAxFactory>

QT_BEGIN_NAMESPACE
QAxFactory *qax_instantiate()
{
    return 0;
}
QT_END_NAMESPACE

int main(int argc, char **argv)
{
    QAxFactory::isServer();
    return 0;
}