blob: f80808c24cdc1fd8e7ef38e768d2f3cec3e18a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QtGlobal>
#if defined(HASKELL_LIBRARY)
# define HASKELLSHARED_EXPORT Q_DECL_EXPORT
#else
# define HASKELLSHARED_EXPORT Q_DECL_IMPORT
#endif
|