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 2, 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., 59 Temple Place - Suite 330, 00020 * Boston, MA 02111-1307, USA. 00021 */ 00022 00023 #ifndef INCLUDED_GR_TYPES_H 00024 #define INCLUDED_GR_TYPES_H 00025 00026 #include <boost/shared_ptr.hpp> 00027 #include <vector> 00028 #include <stddef.h> // size_t 00029 00030 #include <gr_complex.h> 00031 00032 typedef std::vector<int> gr_vector_int; 00033 typedef std::vector<float> gr_vector_float; 00034 typedef std::vector<double> gr_vector_double; 00035 typedef std::vector<void *> gr_vector_void_star; 00036 typedef std::vector<const void *> gr_vector_const_void_star; 00037 00038 /* 00039 * #include <config.h> must be placed beforehand 00040 * in the source file including gr_types.h for 00041 * the following to work correctly 00042 */ 00043 #ifdef HAVE_STDINT_H 00044 #include <stdint.h> 00045 typedef int16_t gr_int16; 00046 typedef int32_t gr_int32; 00047 typedef int64_t gr_int64; 00048 typedef uint16_t gr_uint16; 00049 typedef uint32_t gr_uint32; 00050 typedef uint64_t gr_uint64; 00051 #else 00052 /* 00053 * Note: these defaults may be wrong on 64-bit systems 00054 */ 00055 typedef short gr_int16; 00056 typedef int gr_int32; 00057 typedef long long gr_int64; 00058 typedef unsigned short gr_uint16; 00059 typedef unsigned int gr_uint32; 00060 typedef unsigned long long gr_uint64; 00061 #endif /* HAVE_STDINT_H */ 00062 00063 #endif /* INCLUDED_GR_TYPES_H */