diff options
author | lloyd <[email protected]> | 2010-08-10 13:44:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-08-10 13:44:27 +0000 |
commit | db104ed8303910a945249b424bb36b6976e364bd (patch) | |
tree | 564e7c6a63873bddeebdd1e13887f56fc84c4572 /src/wrap | |
parent | 3935796d1b85d9ba3be9d0526fd35f25831e3cbb (diff) |
Add Filter::name implementation
Diffstat (limited to 'src/wrap')
-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)); |