summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/pmt/pmt_int.h
diff options
context:
space:
mode:
authorMarcus Müller <marcus@hostalia.de>2014-04-12 17:04:54 +0200
committerMarcus Müller <marcus@hostalia.de>2014-04-12 17:07:08 +0200
commitdbd2aee42a4bba767b8f1daf0801fd0aac304be7 (patch)
treed847c079025236e9698fce936e45080a09bd0867 /gnuradio-runtime/lib/pmt/pmt_int.h
parent76970d54f3a6551751d481c63ea54c0794fc2591 (diff)
pmt_io: adding string conversion for uniform vectors
Sadly, this needed expansion of unv_template, otherwise I'd have to hand-write gengen-style code in pmt_io.cc
Diffstat (limited to 'gnuradio-runtime/lib/pmt/pmt_int.h')
-rw-r--r--gnuradio-runtime/lib/pmt/pmt_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/pmt/pmt_int.h b/gnuradio-runtime/lib/pmt/pmt_int.h
index aceb7b74d9..25bcdb9d6b 100644
--- a/gnuradio-runtime/lib/pmt/pmt_int.h
+++ b/gnuradio-runtime/lib/pmt/pmt_int.h
@@ -238,6 +238,7 @@ public:
virtual const void *uniform_elements(size_t &len) = 0;
virtual void *uniform_writable_elements(size_t &len) = 0;
virtual size_t length() const = 0;
+ virtual const std::string string_ref(size_t k) const { return std::string("FIXME"); }
};
#include "pmt_unv_int.h"