root / volk / tmpl / volk_typedefs.tmpl.h @ 95e91b44
History | View | Annotate | Download (1 kB)
| 1 | eccc86fb | Josh Blum | /*
|
|---|---|---|---|
| 2 | eccc86fb | Josh Blum | * Copyright 2011-2012 Free Software Foundation, Inc. |
| 3 | eccc86fb | Josh Blum | * |
| 4 | eccc86fb | Josh Blum | * This file is part of GNU Radio |
| 5 | eccc86fb | Josh Blum | * |
| 6 | eccc86fb | Josh Blum | * GNU Radio is free software; you can redistribute it and/or modify |
| 7 | eccc86fb | Josh Blum | * it under the terms of the GNU General Public License as published by |
| 8 | eccc86fb | Josh Blum | * the Free Software Foundation; either version 3, or (at your option) |
| 9 | eccc86fb | Josh Blum | * any later version. |
| 10 | eccc86fb | Josh Blum | * |
| 11 | eccc86fb | Josh Blum | * GNU Radio is distributed in the hope that it will be useful, |
| 12 | eccc86fb | Josh Blum | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | eccc86fb | Josh Blum | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | eccc86fb | Josh Blum | * GNU General Public License for more details. |
| 15 | eccc86fb | Josh Blum | * |
| 16 | eccc86fb | Josh Blum | * You should have received a copy of the GNU General Public License |
| 17 | eccc86fb | Josh Blum | * along with GNU Radio; see the file COPYING. If not, write to |
| 18 | eccc86fb | Josh Blum | * the Free Software Foundation, Inc., 51 Franklin Street, |
| 19 | eccc86fb | Josh Blum | * Boston, MA 02110-1301, USA. |
| 20 | eccc86fb | Josh Blum | */ |
| 21 | eccc86fb | Josh Blum | |
| 22 | eccc86fb | Josh Blum | #ifndef INCLUDED_VOLK_TYPEDEFS
|
| 23 | eccc86fb | Josh Blum | #define INCLUDED_VOLK_TYPEDEFS
|
| 24 | eccc86fb | Josh Blum | |
| 25 | eccc86fb | Josh Blum | #include <inttypes.h> |
| 26 | eccc86fb | Josh Blum | #include <volk/volk_complex.h> |
| 27 | eccc86fb | Josh Blum | |
| 28 | eccc86fb | Josh Blum | #for $kern in $kernels
|
| 29 | 95e91b44 | Josh Blum | typedef $kern.rettype (*$(kern.pname))($kern.arglist);
|
| 30 | eccc86fb | Josh Blum | #end for |
| 31 | eccc86fb | Josh Blum | |
| 32 | eccc86fb | Josh Blum | #endif /*INCLUDED_VOLK_TYPEDEFS*/ |