1 /* 2 * Copyright 2006, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 9 #ifndef BITMAP_EXPORTER_H 10 #define BITMAP_EXPORTER_H 11 12 #include "Exporter.h" 13 14 class BitmapExporter : public Exporter { 15 public: 16 BitmapExporter(uint32 size); 17 virtual ~BitmapExporter(); 18 19 virtual status_t Export(const Icon* icon, 20 BPositionIO* stream); 21 22 virtual const char* MIMEType(); 23 24 private: 25 uint32 fFormat; 26 uint32 fSize; 27 }; 28 29 #endif // BITMAP_EXPORTER_H 30