diff options
author | Josh Blum | 2012-10-08 00:32:21 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-10-13 11:50:12 -0700 |
commit | a3dfc8b6193b316c95125aafa5c9de1fcf1b6fe3 (patch) | |
tree | 59efeac0ffccbb8c319b6e5c65ca813f5218fca1 /gnuradio-core/src/lib/general | |
parent | d2048cb7c850f35ecca85596515363361ccd8f12 (diff) | |
download | gnuradio-a3dfc8b6193b316c95125aafa5c9de1fcf1b6fe3.tar.gz gnuradio-a3dfc8b6193b316c95125aafa5c9de1fcf1b6fe3.tar.bz2 gnuradio-a3dfc8b6193b316c95125aafa5c9de1fcf1b6fe3.zip |
core: fix several tag includes throughout core
Techinically this include should be the tags header which
brings in the pmt *and* the tags struct definition.
This happens to be working because the struct definition
is implicitly included by the gr_block* and subclass headers.
Diffstat (limited to 'gnuradio-core/src/lib/general')
-rw-r--r-- | gnuradio-core/src/lib/general/gr_annotator_raw.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/general/gr_annotator_raw.i | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-core/src/lib/general/gr_annotator_raw.h b/gnuradio-core/src/lib/general/gr_annotator_raw.h index 8a6c3f6c0..02d061908 100644 --- a/gnuradio-core/src/lib/general/gr_annotator_raw.h +++ b/gnuradio-core/src/lib/general/gr_annotator_raw.h @@ -25,7 +25,7 @@ #include <gr_core_api.h> #include <gr_sync_block.h> -#include <gruel/pmt.h> +#include <gr_tags.h> #include <gruel/thread.h> class gr_annotator_raw; diff --git a/gnuradio-core/src/lib/general/gr_annotator_raw.i b/gnuradio-core/src/lib/general/gr_annotator_raw.i index 85777ef5d..4a58fe7c7 100644 --- a/gnuradio-core/src/lib/general/gr_annotator_raw.i +++ b/gnuradio-core/src/lib/general/gr_annotator_raw.i @@ -22,5 +22,5 @@ GR_SWIG_BLOCK_MAGIC(gr,annotator_raw); -%include <pmt_swig.i> +%include <gr_tags.i> %include <gr_annotator_raw.h> |