mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
11 lines
206 B
C++
11 lines
206 B
C++
|
#ifndef VISUAL_API_HPP_INCLUDED
|
||
|
#define VISUAL_API_HPP_INCLUDED
|
||
|
|
||
|
#ifdef nggui_EXPORTS
|
||
|
#define NGGUI_API NGCORE_API_EXPORT
|
||
|
#else
|
||
|
#define NGGUI_API NGCORE_API_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // VISUAL_API_HPP_INCLUDED
|