#include <gr_runtime_types.h>


Go to the source code of this file.
Classes | |
| class | gr_io_signature |
| i/o signature for input and output ports. More... | |
Functions | |
| gr_io_signature_sptr | gr_make_io_signature (int min_streams, int max_streams, int sizeof_stream_item) |
| Create an i/o signature. | |
| gr_io_signature_sptr | gr_make_io_signature2 (int min_streams, int max_streams, int sizeof_stream_item1, int sizeof_stream_item2) |
| Create an i/o signature. | |
| gr_io_signature_sptr | gr_make_io_signature3 (int min_streams, int max_streams, int sizeof_stream_item1, int sizeof_stream_item2, int sizeof_stream_item3) |
| Create an i/o signature. | |
| gr_io_signature_sptr | gr_make_io_signaturev (int min_streams, int max_streams, const std::vector< int > &sizeof_stream_items) |
| Create an i/o signature. | |
| gr_io_signature_sptr gr_make_io_signature2 | ( | int | min_streams, | |
| int | max_streams, | |||
| int | sizeof_stream_item1, | |||
| int | sizeof_stream_item2 | |||
| ) |
Create an i/o signature.
| min_streams | specify minimum number of streams (>= 0) | |
| max_streams | specify maximum number of streams (>= min_streams or -1 -> infinite) | |
| sizeof_stream_item1 | specify the size of the items in the first stream | |
| sizeof_stream_item2 | specify the size of the items in the second and subsequent streams |
| gr_io_signature_sptr gr_make_io_signature3 | ( | int | min_streams, | |
| int | max_streams, | |||
| int | sizeof_stream_item1, | |||
| int | sizeof_stream_item2, | |||
| int | sizeof_stream_item3 | |||
| ) |
Create an i/o signature.
| min_streams | specify minimum number of streams (>= 0) | |
| max_streams | specify maximum number of streams (>= min_streams or -1 -> infinite) | |
| sizeof_stream_item1 | specify the size of the items in the first stream | |
| sizeof_stream_item2 | specify the size of the items in the second stream | |
| sizeof_stream_item3 | specify the size of the items in the third and subsequent streams |
| gr_io_signature_sptr gr_make_io_signaturev | ( | int | min_streams, | |
| int | max_streams, | |||
| const std::vector< int > & | sizeof_stream_items | |||
| ) |
Create an i/o signature.
| min_streams | specify minimum number of streams (>= 0) | |
| max_streams | specify maximum number of streams (>= min_streams or -1 -> infinite) | |
| sizeof_stream_items | specify the size of the items in the streams |
1.5.8