removed unneded comments

This commit is contained in:
Piotr Krysik 2009-04-08 16:35:13 +02:00
parent e62955ea00
commit ab5cd655f7
2 changed files with 4 additions and 17 deletions

View File

@ -27,25 +27,12 @@
#include <gsm_receiver_cf.h>
#include <gr_io_signature.h>
/*
* Create a new instance of gsm_receiver and return
* a boost shared_ptr. This is effectively the public constructor.
*/
gsm_receiver_cf_sptr
gsm_make_receiver_cf ()
{
return gsm_receiver_cf_sptr (new gsm_receiver_cf ());
}
/*
* Specify constraints on number of input and output streams.
* This info is used to construct the input and output signatures
* (2nd & 3rd args to gr_block's constructor). The input and
* output signatures are used by the runtime system to
* check that a valid number and type of inputs and outputs
* are connected to this block. In this case, we accept
* only 1 input and 1 output.
*/
static const int MIN_IN = 1; // mininum number of input streams
static const int MAX_IN = 1; // maximum number of input streams
static const int MIN_OUT = 1; // minimum number of output streams

View File

@ -1,19 +1,19 @@
/* -*- c++ -*- */
/*
* Copyright 2004 Free Software Foundation, Inc.
*
*
* This file is part of GNU Radio
*
*
* GNU Radio 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.
*
*
* GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,