xref: /haiku/src/apps/icon-o-matic/document/savers/FileSaver.cpp (revision 5ac9b506412b11afb993bb52d161efe7666958a5)
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 #include "FileSaver.h"
10 
11 // constructor
12 FileSaver::FileSaver(const entry_ref& ref)
13 	: fRef(ref)
14 {
15 }
16 
17 // destructor
18 FileSaver::~FileSaver()
19 {
20 }
21 
22 // SetRef
23 void
24 FileSaver::SetRef(const entry_ref& ref)
25 {
26 	fRef = ref;
27 }
28 
29