db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
18 lines
586 B
C
18 lines
586 B
C
/*=========================================================================
|
|
This source has no copyright. It is intended to be copied by users
|
|
wishing to create their own ParaView plugin classes locally.
|
|
=========================================================================*/
|
|
#ifndef __vtk@PROJECT_NAME@_h
|
|
#define __vtk@PROJECT_NAME@_h
|
|
|
|
#if defined(_WIN32)
|
|
# if defined(@PROJECT_NAME@_EXPORTS)
|
|
# define VTK_@PROJECT_NAME@_EXPORT __declspec(dllexport)
|
|
# else
|
|
# define VTK_@PROJECT_NAME@_EXPORT __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# define VTK_@PROJECT_NAME@_EXPORT
|
|
#endif
|
|
|
|
#endif
|