blob: 99b58216cde77b238d42f30af31f4d606b2bbb91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright 2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_WAVELET_API_H
#define INCLUDED_WAVELET_API_H
#include <gnuradio/attributes.h>
#ifdef gnuradio_wavelet_EXPORTS
#define WAVELET_API __GR_ATTR_EXPORT
#else
#define WAVELET_API __GR_ATTR_IMPORT
#endif
#endif /* INCLUDED_WAVELET_API_H */
|