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: BSD-3-Clause
4 */
5
6#ifndef YARP_MATH_API_H
7#define YARP_MATH_API_H
8
9#include <yarp/conf/api.h>
10#ifndef YARP_math_API
11# ifdef YARP_math_EXPORTS
12# define YARP_math_API YARP_EXPORT
13# define YARP_math_EXTERN YARP_EXPORT_EXTERN
14# define YARP_math_DEPRECATED_API YARP_DEPRECATED_EXPORT
15# define YARP_math_DEPRECATED_API_MSG(X) YARP_DEPRECATED_MSG_EXPORT(X)
16# else
17# define YARP_math_API YARP_IMPORT
18# define YARP_math_EXTERN YARP_IMPORT_EXTERN
19# define YARP_math_DEPRECATED_API YARP_DEPRECATED_IMPORT
20# define YARP_math_DEPRECATED_API_MSG(X) YARP_DEPRECATED_MSG_IMPORT(X)
21# endif
22#endif
23
24#endif // YARP_MATH_API_H