source: tags/release-1.2.2/src/Outputs/FileCatalogueWriter.hh

Last change on this file was 1070, checked in by MatthewWhiting, 12 years ago

Inserting another base class between CatalogueWriter? and VOTableCatalogueWriter, to handle writing to disk files via ofstream.

File size: 2.1 KB
Line 
1// -----------------------------------------------------------------------
2// FileCatalogueWriter.hh: Writing output catalogues to disk files
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
28#ifndef DUCHAMP_FILE_CATALOGUE_WRITER_H_
29#define DUCHAMP_FILE_CATALOGUE_WRITER_H_
30
31#include <duchamp/Outputs/FileCatalogueWriter.hh>
32#include <duchamp/Outputs/CatalogueWriter.hh>
33#include <ios>
34#include <iostream>
35#include <fstream>
36
37namespace duchamp {
38
39  class FileCatalogueWriter : public CatalogueWriter
40  {
41  public:
42    FileCatalogueWriter();
43    FileCatalogueWriter(std::string name);
44    FileCatalogueWriter(const FileCatalogueWriter& other);
45    FileCatalogueWriter& operator= (const FileCatalogueWriter& other);
46    virtual ~FileCatalogueWriter();
47   
48    /// @brief open the catalogue file for writing
49    bool openCatalogue(std::ios_base::openmode mode = std::ios_base::out );
50
51    /// @brief close the catalogue file
52    bool closeCatalogue();
53
54  protected:
55    std::ofstream itsFileStream;
56
57  };
58
59}
60
61#endif
62
Note: See TracBrowser for help on using the repository browser.