]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STARLIGHT/starlight/src/.svn/text-base/filewriter.cpp.svn-base
STARLIGHT code and interface
[u/mrichter/AliRoot.git] / STARLIGHT / starlight / src / .svn / text-base / filewriter.cpp.svn-base
CommitLineData
da32329d
AM
1///////////////////////////////////////////////////////////////////////////
2//
3// Copyright 2010
4//
5// This file is part of starlight.
6//
7// starlight is free software: you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation, either version 3 of the License, or
10// (at your option) any later version.
11//
12// starlight is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with starlight. If not, see <http://www.gnu.org/licenses/>.
19//
20///////////////////////////////////////////////////////////////////////////
21//
22// File and Version Information:
23// $Rev:: $: revision of last commit
24// $Author:: $: author of last commit
25// $Date:: $: date of last commit
26//
27// Description:
28//
29//
30//
31///////////////////////////////////////////////////////////////////////////
32
33
34#include <iostream>
35#include <exception>
36#include <cstdlib>
37
38#include "filewriter.h"
39
40
41using namespace std;
42
43
44fileWriter::fileWriter()
45: _fileName(""),
46 _fileStream()
47{ }
48
49
50fileWriter::fileWriter(const string& fileName) :
51 _fileName(fileName)
52 ,_fileStream(fileName.c_str())
53{ }
54
55
56fileWriter::~fileWriter()
57{ }
58
59
60int fileWriter::open()
61{
62 try
63 {
64 _fileStream.open(_fileName.c_str());
65 }
66 catch (const ios::failure & error)
67 {
68 cerr << "I/O exception: " << error.what() << endl;
69 return EXIT_FAILURE;
70 }
71 return 0;
72}
73
74
75int fileWriter::open(const string& fileName)
76{
77 _fileName = fileName;
78 return open();
79}
80
81
82int fileWriter::close()
83{
84 try
85 {
86 _fileStream.close();
87 }
88 catch (const ios::failure & error)
89 {
90 cerr << "I/O exception: " << error.what() << endl;
91 return EXIT_FAILURE;
92 }
93 return 0;
94}