Unit
Biblioteca utilitária para facilitar o tratamento de unidades
unitConfig.h
Go to the documentation of this file.
1 /************************************************************************
2 **
3 ** Copyright (C) 2009 K2FS Sistemas e Projetos Ltd.
4 ** All rights reserved.
5 **
6 ************************************************************************/
7 
17 #ifndef _UNIT_CONFIG_H_
18 #define _UNIT_CONFIG_H_
19 
20 // Control exporting (when compiling the DLL) or importing symbols from
21 // the shared library
22 #include <QtCore/QtGlobal>
23 
24 #ifdef UNIT_LIB
25 #define UNIT_API_EXPORT Q_DECL_EXPORT
26 #else
27 #define UNIT_API_EXPORT Q_DECL_IMPORT
28 #endif
29 
30 
31 #endif
32 
33