qtk/src/qtkapi.h

24 lines
804 B
C
Raw Normal View History

/*##############################################################################
## Author: Shaun Reed ##
## Legal: All Content (c) 2022 Shaun Reed, all rights reserved ##
## About: Main window for Qt6 OpenGL widget application ##
## ##
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
##############################################################################*/
#ifndef QTK_QTKAPI_H
#define QTK_QTKAPI_H
#include <QtCore/QtGlobal>
#ifdef QTK_SHARED
2022-11-24 22:26:53 +00:00
#if defined(QTK_EXPORT)
#define QTKAPI Q_DECL_EXPORT
#else
2022-11-24 22:26:53 +00:00
#define QTKAPI Q_DECL_IMPORT
#endif
#else
#define QTKAPI
#endif
2022-11-24 22:26:53 +00:00
#endif // QTK_QTKAPI_H