AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
agxSensor/export.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17#ifndef AGXSENSOR_EXPORT_H
18#define AGXSENSOR_EXPORT_H
19
20
21#include <agx/config.h>
22#include <agx/macros.h>
23
25
26#ifdef _WIN32
27
28#if AGX_DYNAMIC() && defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined( __BCPLUSPLUS__) || defined( __MWERKS__)
29# if defined( AGXSENSOR_LIBRARY_STATIC )
30# define AGXSENSOR_EXPORT
31# elif defined( AGXSENSOR_LIBRARY )
32# define AGXSENSOR_EXPORT __declspec(dllexport)
33# else
34# define AGXSENSOR_EXPORT __declspec(dllimport)
35# endif
36#else
37# define AGXSENSOR_EXPORT
38#endif
39
40#else
41 // Non Win32
42 #if __GNUC__ >= 4
43 #define AGXSENSOR_EXPORT __attribute__ ((visibility("default")))
44 #else
45 #define AGXSENSOR_EXPORT
46 #endif
47#endif
48
50
51#endif
52
#define DOXYGEN_END_INTERNAL_BLOCK()
Definition: macros.h:89
#define DOXYGEN_START_INTERNAL_BLOCK()
Definition: macros.h:88