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_SET_SAVER_H 10 #define BITMAP_SET_SAVER_H 11 12 #include "FileSaver.h" 13 14 class BitmapSetSaver : public FileSaver { 15 public: 16 BitmapSetSaver(const entry_ref& ref); 17 virtual ~BitmapSetSaver(); 18 19 virtual status_t Save(Document* document); 20 }; 21 22 #endif // BITMAP_SET_SAVER_H 23