HaikuDepot: notify work status from main window
[haiku.git] / src / apps / icon-o-matic / document / savers / SimpleFileSaver.h
blobba6f623bc8cb36d25d87b2656f8a9f0e5003dfa9
1 /*
2 * Copyright 2006-2007, 2011, Stephan Aßmus <superstippi@gmx.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5 #ifndef SIMPLE_FILE_SAVER_H
6 #define SIMPLE_FILE_SAVER_H
9 #include "FileSaver.h"
12 class Exporter;
15 class SimpleFileSaver : public FileSaver {
16 public:
17 SimpleFileSaver(Exporter* exporter,
18 const entry_ref& ref);
19 virtual ~SimpleFileSaver();
21 virtual status_t Save(Document* document);
23 void WaitForExportThread();
25 private:
26 Exporter* fExporter;
30 #endif // SIMPLE_FILE_SAVER_H