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
12FileSaver::FileSaver(const entry_ref& ref)
13	: fRef(ref)
14{
15}
16
17// destructor
18FileSaver::~FileSaver()
19{
20}
21
22// SetRef
23void
24FileSaver::SetRef(const entry_ref& ref)
25{
26	fRef = ref;
27}
28
29