From 87be8242fd5855a8e8f6a76fddf40275b711c784 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 19 Aug 2012 00:33:23 -0700 Subject: runtime: a lot more is compiling/linking --- lib/element_impl.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/element_impl.hpp') diff --git a/lib/element_impl.hpp b/lib/element_impl.hpp index d765f6b..4add1e8 100644 --- a/lib/element_impl.hpp +++ b/lib/element_impl.hpp @@ -18,6 +18,7 @@ #define INCLUDED_LIBGNURADIO_ELEMENT_IMPL_HPP #include +#include #include #include #include @@ -51,6 +52,8 @@ struct ElementImpl gr_vector_int work_ninput_items; Block::InputItems input_items; Block::OutputItems output_items; + std::vector produce_items; + std::vector consume_items; //tag tracking std::vector > input_tags; @@ -59,10 +62,17 @@ struct ElementImpl Block::tag_propagation_policy_t tag_prop_policy; tsbe::Block block; + tsbe::Topology topology; + const tsbe::Element &get_elem(void) + { + if (block) return block; + return topology; + } void handle_port_msg(const size_t, const tsbe::Wax &); void topology_update(const tsbe::TaskInterface &); + bool enble_fixed_rate; double relative_rate; }; -- cgit