HaikuDepot: notify work status from main window
[haiku.git] / src / apps / icon-o-matic / document / savers / FileSaver.h
blob6e0ce45c017af9ebe74e5bdfd060437c9431d332
1 /*
2 * Copyright 2006, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Stephan Aßmus <superstippi@gmx.de>
7 */
9 #ifndef FILE_SAVER_H
10 #define FILE_SAVER_H
12 #include <Entry.h>
14 #include "DocumentSaver.h"
16 class FileSaver : public DocumentSaver {
17 public:
18 FileSaver(const entry_ref& ref);
19 virtual ~FileSaver();
21 void SetRef(const entry_ref& ref);
22 const entry_ref* Ref() const
23 { return &fRef; }
25 protected:
26 entry_ref fRef;
29 #endif // FILE_SAVER_H