18 lines
226 B
C
18 lines
226 B
C
|
#pragma once
|
||
|
#ifndef __SPG4TOOL_GLOBAL__H__
|
||
|
#define __SPG4TOOL_GLOBAL__H__
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#ifdef SPG4TOOL_LIB
|
||
|
#define SPG4TOOL_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
#define SPG4TOOL_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|