HaikuDepot: notify work status from main window
[haiku.git] / src / apps / icon-o-matic / document / savers / NativeSaver.h
blob0a2e1eef4e3a64d44cc4bd9085458c5f88e07779
1 /*
2 * Copyright 2007, 2011, Stephan Aßmus <superstippi@gmx.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5 #ifndef NATIVE_SAVER_H
6 #define NATIVE_SAVER_H
9 #include "AttributeSaver.h"
10 #include "SimpleFileSaver.h"
13 class NativeSaver : public SimpleFileSaver {
14 public:
15 NativeSaver(const entry_ref& ref);
16 virtual ~NativeSaver();
18 virtual status_t Save(Document* document);
20 protected:
21 AttributeSaver fAttrSaver;
25 #endif // NATIVE_SAVER_H