YARP
Yet Another Robot Platform
api.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3  * SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef YARP_DEV_API_H
8 #define YARP_DEV_API_H
9 
10 #include <yarp/conf/api.h>
11 #ifndef YARP_dev_API
12 # ifdef YARP_dev_EXPORTS
13 # define YARP_dev_API YARP_EXPORT
14 # define YARP_dev_EXTERN YARP_EXPORT_EXTERN
15 # define YARP_dev_DEPRECATED_API YARP_DEPRECATED_EXPORT
16 # define YARP_dev_DEPRECATED_API_MSG(X) YARP_DEPRECATED_MSG_EXPORT(X)
17 # else
18 # define YARP_dev_API YARP_IMPORT
19 # define YARP_dev_EXTERN YARP_IMPORT_EXTERN
20 # define YARP_dev_DEPRECATED_API YARP_DEPRECATED_IMPORT
21 # define YARP_dev_DEPRECATED_API_MSG(X) YARP_DEPRECATED_MSG_IMPORT(X)
22 # endif
23 #endif
24 
25 #endif // YARP_DEV_API_H