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/*! Saves a set of png images of various sizes */
15class BitmapSetSaver : public FileSaver {
16 public:
17								BitmapSetSaver(const entry_ref& ref);
18	virtual						~BitmapSetSaver();
19
20	virtual	status_t			Save(Document* document);
21};
22
23#endif // BITMAP_SET_SAVER_H
24