vfs: check userland buffers before reading them.
[haiku.git] / src / add-ons / print / drivers / gutenprint / OutputStream.h
blobf46b81d3795cca27534237b72b3d166661c554dd
1 /*
2 * Copyright 2010, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Michael Pfeiffer
7 */
8 #ifndef OUTPUT_STREAM_H
9 #define OUTPUT_STREAM_H
11 #include "Transport.h"
14 class OutputStream
16 public:
17 virtual void Write(const void *buffer, size_t size)
18 throw(TransportException) = 0;
22 #endif