YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
api.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: GPL-2.0-or-later
4 */
5
6#ifndef YARP_GSL_API_H
7#define YARP_GSL_API_H
8
9#include <yarp/conf/api.h>
10#ifndef YARP_gsl_API
11# ifdef YARP_gsl_EXPORTS
12# define YARP_gsl_API YARP_EXPORT
13# define YARP_gsl_EXTERN YARP_EXPORT_EXTERN
14# define YARP_gsl_DEPRECATED_API YARP_DEPRECATED_EXPORT
15# define YARP_gsl_DEPRECATED_API_MSG(X) YARP_DEPRECATED_MSG_EXPORT(X)
16# else
17# define YARP_gsl_API YARP_IMPORT
18# define YARP_gsl_EXTERN YARP_IMPORT_EXTERN
19# define YARP_gsl_DEPRECATED_API YARP_DEPRECATED_IMPORT
20# define YARP_gsl_DEPRECATED_API_MSG(X) YARP_DEPRECATED_MSG_IMPORT(X)
21# endif
22#endif
23
24#endif // YARP_GSL_API_H