GNU Radio 3.5.1 C++ API
|
00001 /* -*- c++ -*- */ 00002 /* 00003 * Copyright 2004 Free Software Foundation, Inc. 00004 * 00005 * This file is part of GNU Radio 00006 * 00007 * GNU Radio is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License as published by 00009 * the Free Software Foundation; either version 3, or (at your option) 00010 * any later version. 00011 * 00012 * GNU Radio is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with GNU Radio; see the file COPYING. If not, write to 00019 * the Free Software Foundation, Inc., 51 Franklin Street, 00020 * Boston, MA 02110-1301, USA. 00021 */ 00022 00023 #ifndef INCLUDED_GR_TYPES_H 00024 #define INCLUDED_GR_TYPES_H 00025 00026 #include <gr_core_api.h> 00027 #include <boost/shared_ptr.hpp> 00028 #include <vector> 00029 #include <stddef.h> // size_t 00030 00031 #include <gr_complex.h> 00032 00033 typedef std::vector<int> gr_vector_int; 00034 typedef std::vector<float> gr_vector_float; 00035 typedef std::vector<double> gr_vector_double; 00036 typedef std::vector<void *> gr_vector_void_star; 00037 typedef std::vector<const void *> gr_vector_const_void_star; 00038 00039 /* 00040 * #include <config.h> must be placed beforehand 00041 * in the source file including gr_types.h for 00042 * the following to work correctly 00043 */ 00044 #ifdef HAVE_STDINT_H 00045 #include <stdint.h> 00046 typedef int16_t gr_int16; 00047 typedef int32_t gr_int32; 00048 typedef int64_t gr_int64; 00049 typedef uint16_t gr_uint16; 00050 typedef uint32_t gr_uint32; 00051 typedef uint64_t gr_uint64; 00052 #else 00053 /* 00054 * Note: these defaults may be wrong on 64-bit systems 00055 */ 00056 typedef short gr_int16; 00057 typedef int gr_int32; 00058 typedef long long gr_int64; 00059 typedef unsigned short gr_uint16; 00060 typedef unsigned int gr_uint32; 00061 typedef unsigned long long gr_uint64; 00062 #endif /* HAVE_STDINT_H */ 00063 00064 #endif /* INCLUDED_GR_TYPES_H */