libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / apps / icon-o-matic / import_export / flat_icon / RDefExporter.h
blob36fc43d2e89fdf48a1d0eb1ca6dcc328a32ebab5
1 /*
2 * Copyright 2006, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Stephan Aßmus <superstippi@gmx.de>
7 */
9 #ifndef RDEF_EXPORTER_H
10 #define RDEF_EXPORTER_H
12 #include "FlatIconExporter.h"
14 class RDefExporter : public FlatIconExporter {
15 public:
16 RDefExporter();
17 virtual ~RDefExporter();
19 // FlatIconExporter interface
20 virtual status_t Export(const Icon* icon,
21 BPositionIO* stream);
23 virtual const char* MIMEType();
25 private:
26 status_t _Export(const uint8* source,
27 size_t sourceSize,
28 BPositionIO* stream) const;
31 #endif // RDEF_EXPORTER_H