blob: d36befb88886ea7fa1fffb9c82e03c66e3011545 [file] [log] [blame]
ptrkrysik529895b2014-12-02 18:07:38 +01001/* -*- c++ -*- */
piotr437f5462014-02-04 17:57:25 +01002/*
ptrkrysik529895b2014-12-02 18:07:38 +01003 * @file
4 * @author Piotr Krysik <ptrkrysik@gmail.com>
5 * @section LICENSE
piotr437f5462014-02-04 17:57:25 +01006 *
ptrkrysik529895b2014-12-02 18:07:38 +01007 * Gr-gsm is free software; you can redistribute it and/or modify
piotr437f5462014-02-04 17:57:25 +01008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3, or (at your option)
10 * any later version.
11 *
ptrkrysik529895b2014-12-02 18:07:38 +010012 * Gr-gsm is distributed in the hope that it will be useful,
piotr437f5462014-02-04 17:57:25 +010013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
ptrkrysik529895b2014-12-02 18:07:38 +010018 * along with gr-gsm; see the file COPYING. If not, write to
piotr437f5462014-02-04 17:57:25 +010019 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
Piotr Krysikaf8ad5d2016-05-29 13:05:48 +020023#ifndef INCLUDED_GRGSM_API_H
24#define INCLUDED_GRGSM_API_H
piotr437f5462014-02-04 17:57:25 +010025
26#include <gnuradio/attributes.h>
27
28#ifdef gnuradio_gsm_EXPORTS
Piotr Krysikaf8ad5d2016-05-29 13:05:48 +020029# define GRGSM_API __GR_ATTR_EXPORT
piotr437f5462014-02-04 17:57:25 +010030#else
Piotr Krysikaf8ad5d2016-05-29 13:05:48 +020031# define GRGSM_API __GR_ATTR_IMPORT
piotr437f5462014-02-04 17:57:25 +010032#endif
33
Piotr Krysikaf8ad5d2016-05-29 13:05:48 +020034#endif /* INCLUDED_GRGSM_API_H */