GNU Radio 3.6.5 C++ API
|
00001 /* -*- c++ -*- */ 00002 /* 00003 * Copyright 2004,2012 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 /* WARNING: this file is machine generated. Edits will be overwritten */ 00024 00025 #ifndef INCLUDED_ANALOG_SIG_SOURCE_I_IMPL_H 00026 #define INCLUDED_ANALOG_SIG_SOURCE_I_IMPL_H 00027 00028 #include <analog/sig_source_i.h> 00029 #include <gr_sync_block.h> 00030 #include <gr_fxpt_nco.h> 00031 00032 namespace gr { 00033 namespace analog { 00034 00035 class sig_source_i_impl : public sig_source_i 00036 { 00037 private: 00038 double d_sampling_freq; 00039 gr_waveform_t d_waveform; 00040 double d_frequency; 00041 double d_ampl; 00042 int d_offset; 00043 gr_fxpt_nco d_nco; 00044 00045 public: 00046 sig_source_i_impl(double sampling_freq, gr_waveform_t waveform, 00047 double wave_freq, double ampl, int offset = 0); 00048 ~sig_source_i_impl(); 00049 00050 virtual int work(int noutput_items, 00051 gr_vector_const_void_star &input_items, 00052 gr_vector_void_star &output_items); 00053 00054 double sampling_freq() const { return d_sampling_freq; } 00055 gr_waveform_t waveform() const { return d_waveform; } 00056 double frequency() const { return d_frequency; } 00057 double amplitude() const { return d_ampl; } 00058 int offset() const { return d_offset; } 00059 00060 void set_sampling_freq(double sampling_freq); 00061 void set_waveform(gr_waveform_t waveform); 00062 void set_frequency(double frequency); 00063 void set_amplitude(double ampl); 00064 void set_offset(int offset); 00065 }; 00066 00067 } /* namespace analog */ 00068 } /* namespace gr */ 00069 00070 #endif /* INCLUDED_ANALOG_SIG_SOURCE_I_IMPL_H */