23#ifndef INCLUDED_GR_TAGS_H
24#define INCLUDED_GR_TAGS_H
59 return (t.
key == key) && (t.
value == value) && (t.
srcid == srcid) &&
72 : offset(rhs.offset), key(rhs.key), value(rhs.value), srcid(rhs.srcid)
#define GR_RUNTIME_API
Definition gnuradio-runtime/include/gnuradio/api.h:30
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition basic_block.h:46
boost::shared_ptr< pmt_base > pmt_t
typedef for shared pointer (transparent reference counting). See http://www.boost....
Definition pmt.h:96
#define PMT_F
Definition pmt.h:136
#define PMT_NIL
Definition pmt.h:134
tag_t & operator=(const tag_t &rhs)
Definition tags.h:75
std::vector< long > marked_deleted
Used by gr_buffer to mark a tagged as deleted by a specific block. You can usually ignore this.
Definition tags.h:46
static bool offset_compare(const tag_t &x, const tag_t &y)
Definition tags.h:52
tag_t()
Definition tags.h:63
~tag_t()
Definition tags.h:86
uint64_t offset
the item tag occurred at (as a uint64_t)
Definition tags.h:33
tag_t(const tag_t &rhs)
Definition tags.h:71
pmt::pmt_t srcid
the source ID of tag (as a PMT)
Definition tags.h:42
bool operator==(const tag_t &t) const
Definition tags.h:57
pmt::pmt_t value
the value of tag (as a PMT)
Definition tags.h:39
pmt::pmt_t key
the key of tag (as a PMT symbol)
Definition tags.h:36