Advertisement
Guest User

top_block.hpp

a guest
Aug 13th, 2017
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. /********************
  2. GNU Radio C++ Flow Graph Header File
  3.  
  4. Title: top_block
  5. Generated: Sun Aug 13 21:45:51 2017
  6. ********************/
  7.  
  8. /********************
  9. ** Create includes
  10. ********************/
  11. #include <gnuradio/analog/sig_source_c.h>
  12. #include <gnuradio/blocks/null_sink.h>
  13. #include <gnuradio/blocks/throttle.h>
  14. #include <gnuradio/top_block.h>
  15.  
  16. using namespace gr;
  17.  
  18.  
  19. class tb : public top_block {
  20.  
  21. private:
  22.     blocks::throttle::sptr blocks_throttle_0;
  23.     blocks::null_sink::sptr blocks_null_sink_0;
  24.     analog::sig_source_c::sptr analog_sig_source_x_0;
  25.  
  26.  
  27.  
  28. public:
  29.     tb();
  30.     ~tb();
  31.  
  32.  
  33.  
  34. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement