diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wrap/python/filter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wrap/python/filter.cpp b/src/wrap/python/filter.cpp index 48a3f84eb..343c0831b 100644 --- a/src/wrap/python/filter.cpp +++ b/src/wrap/python/filter.cpp @@ -17,6 +17,8 @@ class Py_Filter : public Filter public: virtual void write_str(const std::string&) = 0; + std::string name() const { return "Py_Filter_FIXME"; } + void write(const byte data[], u32bit length) { write_str(std::string((const char*)data, length)); |