xref: /haiku/src/add-ons/print/drivers/gutenprint/OutputStream.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
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