diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-10 23:52:51 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-10 23:52:51 -0400 |
commit | 294a6fd3b811703329eb15ed91d848c65cc6700e (patch) | |
tree | b422709c45c6bd8a67255d1c55f0cc34604e5bfc /docs/doxygen | |
parent | 5a3f0062fa438875b68191363d4ff78ccd07d0c9 (diff) |
blocks: removing file_sink/source file_descriptor_sink/source form core and moved all refs to gr-blocks.
Diffstat (limited to 'docs/doxygen')
-rw-r--r-- | docs/doxygen/other/main_page.dox | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/doxygen/other/main_page.dox b/docs/doxygen/other/main_page.dox index 6f422dfd8f..f9e335061c 100644 --- a/docs/doxygen/other/main_page.dox +++ b/docs/doxygen/other/main_page.dox @@ -227,7 +227,7 @@ class mytb(gr.top_block): self.add = blocks.add_cc() self.sub = blocks.sub_cc() self.head = gr.head(gr.sizeof_gr_complex, 1000000) - self.snk = gr.file_sink(gr.sizeof_gr_complex, "output.32fc") + self.snk = blocks.file_sink(gr.sizeof_gr_complex, "output.32fc") self.connect(self.src0, (self.add,0)) self.connect(self.src1, (self.add,1)) @@ -282,7 +282,7 @@ class mytb(gr.top_block): self.add = blocks.add_cc() self.sub = blocks.sub_cc() self.head = gr.head(gr.sizeof_gr_complex, 1000000) - self.snk = gr.file_sink(gr.sizeof_gr_complex, "output.32fc") + self.snk = blocks.file_sink(gr.sizeof_gr_complex, "output.32fc") self.connect(self.src0, (self.add,0)) self.connect(self.src1, (self.add,1)) |