gr-air-modes/include/air_modes_int_and_dump.h

55 lines
1.6 KiB
C
Raw Normal View History

2010-10-19 00:59:08 +08:00
/*
# Copyright 2010 Nick Foster
#
# This file is part of gr-air-modes
#
# gr-air-modes is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# gr-air-modes is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with gr-air-modes; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
*/
#ifndef INCLUDED_AIR_MODES_int_and_dump_H
#define INCLUDED_AIR_MODES_int_and_dump_H
2010-09-15 13:01:56 +08:00
#include <gr_block.h>
2010-09-15 13:01:56 +08:00
class air_modes_int_and_dump;
typedef boost::shared_ptr<air_modes_int_and_dump> air_modes_int_and_dump_sptr;
2010-09-15 13:01:56 +08:00
air_modes_int_and_dump_sptr air_make_modes_int_and_dump(int samples_per_chip);
2010-09-15 13:01:56 +08:00
/*!
* \brief mode select int_and_dump filter
2010-09-15 13:01:56 +08:00
* \ingroup block
*/
class air_modes_int_and_dump : public gr_block
2010-09-15 13:01:56 +08:00
{
private:
friend air_modes_int_and_dump_sptr air_make_modes_int_and_dump(int samples_per_chip);
air_modes_int_and_dump(int samples_per_chip);
2010-09-15 13:01:56 +08:00
int d_samples_per_chip;
float d_acc;
float d_pos;
2010-09-15 13:01:56 +08:00
public:
int general_work (int noutput_items,
gr_vector_int &ninput_items,
2010-09-15 13:01:56 +08:00
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items);
};
#endif /* INCLUDED_AIR_MODES_int_and_dump_H */