diff options
| author | Vincent Richard <[email protected]> | 2004-10-21 17:05:47 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-10-21 17:05:47 +0200 |
| commit | 2949fb51f13e1236d5c161f02e1c2c8541100e9f (patch) | |
| tree | 991edcf50483116ce83977a4d9e652de8c5328dc /tests/encoding | |
| parent | header class unit tests added (diff) | |
| download | vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.tar.gz vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.zip | |
Refactoring (see ChangeLog).
Diffstat (limited to 'tests/encoding')
| -rw-r--r-- | tests/encoding/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/encoding/main.cpp b/tests/encoding/main.cpp index 78664f8a..597ef248 100644 --- a/tests/encoding/main.cpp +++ b/tests/encoding/main.cpp @@ -35,10 +35,10 @@ int main(int argc, char* argv[]) vmime::encoder* p = vmime::encoderFactory::getInstance()->create(encoding); - p->properties()["maxlinelength"] = 76; + p->getProperties()["maxlinelength"] = 76; - vmime::inputStreamAdapter in(std::cin); - vmime::outputStreamAdapter out(std::cout); + vmime::utility::inputStreamAdapter in(std::cin); + vmime::utility::outputStreamAdapter out(std::cout); if (mode == "e") p->encode(in, out); |
