summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qmake/testdata/subdirs/simple_dll/simple.h
blob: ca84020977089ed1ebff6c8acdd7242cc0af8be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef SIMPLE_H
#define SIMPLE_H

#include <qstring.h>

#ifdef SIMPLEDLL_MAKEDLL
# define SIMPLEDLL_EXPORT Q_DECL_EXPORT
#else
# define SIMPLEDLL_EXPORT Q_DECL_IMPORT
#endif

class SIMPLEDLL_EXPORT Simple
{
public:
    Simple();
    ~Simple();

    QString test();
};

#endif