CuteHMI - CuteHMI (CuteHMI.2)
platform.hpp
1 #ifndef H_EXTENSIONS_CUTEHMI_2_INCLUDE_CUTEHMI_INTERNAL_PLATFORM_HPP
2 #define H_EXTENSIONS_CUTEHMI_2_INCLUDE_CUTEHMI_INTERNAL_PLATFORM_HPP
3 
4 #include <QtCore/QtGlobal>
5 
6 #ifdef CUTEHMI_DYNAMIC
7  #ifdef CUTEHMI_BUILD
8  // Export symbols to dynamic library.
9  #define CUTEHMI_API Q_DECL_EXPORT
10  #ifdef CUTEHMI_TESTS
11  // Export symbols to dynamic library.
12  #define CUTEHMI_PRIVATE Q_DECL_EXPORT
13  #else
14  #define CUTEHMI_PRIVATE
15  #endif
16  #else
17  // Using symbols from dynamic library.
18  #define CUTEHMI_API Q_DECL_IMPORT
19  #ifdef CUTEHMI_TESTS
20  // Using symbols from dynamic library.
21  #define CUTEHMI_PRIVATE Q_DECL_IMPORT
22  #else
23  #define CUTEHMI_PRIVATE
24  #endif
25  #endif
26 #else
27  #define CUTEHMI_API
28  #define CUTEHMI_PRIVATE
29 #endif
30 
31 #endif
32 
33 //(c)C: Copyright © 2018-2020, Michał Policht <michal@policht.pl>. All rights reserved.
34 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
35 //(c)C: This file is a part of CuteHMI.
36 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
37 //(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
38 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI. If not, see <https://www.gnu.org/licenses/>.
39 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
40 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
41 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
42 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.