xref: /haiku/src/add-ons/print/drivers/gutenprint/OutputStream.h (revision 922e7ba1f3228e6f28db69b0ded8f86eb32dea17)
1 /*
2 * Copyright 2010, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Michael Pfeiffer
7 */
8 #ifndef OUTPUT_STREAM_H
9 #define OUTPUT_STREAM_H
10 
11 #include "Transport.h"
12 
13 
14 class OutputStream
15 {
16 public:
17 	virtual void	Write(const void *buffer, size_t size)
18 						throw(TransportException) = 0;
19 };
20 
21 
22 #endif
23