HaikuDepot: notify work status from main window
[haiku.git] / src / apps / icon-o-matic / import_export / bitmap / BitmapExporter.h
blobda0d6153fe9397ce68b803c29e1bbeafc022dd2b
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 BITMAP_EXPORTER_H
10 #define BITMAP_EXPORTER_H
12 #include "Exporter.h"
14 class BitmapExporter : public Exporter {
15 public:
16 BitmapExporter(uint32 size);
17 virtual ~BitmapExporter();
19 virtual status_t Export(const Icon* icon,
20 BPositionIO* stream);
22 virtual const char* MIMEType();
24 private:
25 uint32 fFormat;
26 uint32 fSize;
29 #endif // BITMAP_EXPORTER_H