diff options
author | Max Kellermann <max@duempel.org> | 2016-05-04 09:31:21 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-05-04 16:32:31 +0200 |
commit | e7edc0264745499609aa22bd19620e15f6ef3e62 (patch) | |
tree | 057402f9c77c5d5e9bf3346ca8cff4499ca444b6 /src/encoder/ToOutputStream.hxx | |
parent | 69bf835059cfb8c233979b9988404a65c971e2a5 (diff) |
encoder/Interface: move instance methods to abstract class
Rename struct Encoder to PreparedEncoder, and add a new (abstract)
class Encoder which represents one encoder instance.
Diffstat (limited to 'src/encoder/ToOutputStream.hxx')
-rw-r--r-- | src/encoder/ToOutputStream.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoder/ToOutputStream.hxx b/src/encoder/ToOutputStream.hxx index f50cbeed2..10d0ddf37 100644 --- a/src/encoder/ToOutputStream.hxx +++ b/src/encoder/ToOutputStream.hxx @@ -22,8 +22,8 @@ #include "check.h" -struct Encoder; class OutputStream; +class Encoder; void EncoderToOutputStream(OutputStream &os, Encoder &encoder); |