source: tags/release-1.2.2/src/Utils/VOParam.hh

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

Improved parameter output for the annotation files. Tidying up the VOParam & VOField classes, and adding some documentation comments.

File size: 2.4 KB
Line 
1// -----------------------------------------------------------------------
2// VOParam.hh: Specification of a parameter for output to a VOTable
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
29#ifndef VOPARAM_HH
30#define VOPARAM_HH
31
32#include <iostream>
33#include <string>
34
35namespace duchamp
36{
37
38  ///  @brief A class that holds information for a <PARAM > entry in a
39  ///  VOTable. @details It also provides useful functions to store
40  ///  and print that information.
41  class VOParam
42  {
43  public:
44    VOParam();
45    template <class T> VOParam(std::string name, std::string UCD, std::string datatype, T value, int width, std::string units);
46    VOParam(const VOParam& other);
47    VOParam& operator= (const VOParam& other);
48    virtual ~VOParam(){};
49 
50    /// @brief Print the PARAM entry
51    void printParam(std::ostream &stream);
52    std::string name(){return itsName;};
53    std::string UCD(){return itsUCD;};
54    std::string datatype(){return itsDatatype;};
55    std::string value(){return itsValue;};
56    int width(){return itsWidth;};
57    std::string units(){return itsUnits;};
58   
59  private:
60    std::string itsName;
61    std::string itsUCD;
62    std::string itsDatatype;
63    std::string itsValue;
64    int         itsWidth;
65    std::string itsUnits;
66   
67  };
68
69}
70
71#endif //VOPARAM_HH
Note: See TracBrowser for help on using the repository browser.