KanoopGuiQt 1.3.0
Qt GUI utility library
Loading...
Searching...
No Matches
libkanoopgui.h
1/******************************************************************************************
2**
3** libtessgui.h
4**
5** Moved from my Tesseract Engineering repo to open-source
6**
7** Author: Stephen Punak
8** Created: Mon Oct 9 11:13:45 2023
9**
10******************************************************************************************/
11#ifndef LIBTESSGUI_H
12#define LIBTESSGUI_H
13
14#include <QtCore/qglobal.h>
15
16/**
17 * @def LIBKANOOPGUI_EXPORT
18 * @brief Symbol visibility macro for KanoopGuiQt public API.
19 *
20 * Expands to Q_DECL_EXPORT when building the library and Q_DECL_IMPORT when
21 * consuming it. Apply to every class or function that is part of the public API.
22 */
23#if defined(KANOOP_QTGUI_LIBRARY)
24# define LIBKANOOPGUI_EXPORT Q_DECL_EXPORT
25#else
26# define LIBKANOOPGUI_EXPORT Q_DECL_IMPORT
27#endif
28
29#endif // LIBTESSGUI_H