source: tags/release-1.2/src/Utils/VOParam.hh @ 1391

Last change on this file since 1391 was 916, checked in by MatthewWhiting, 12 years ago

Addressing #135, and implementing the new approach, whereby all the relevant parameters are written to the VOTable. There is a new Param method that creates a vector list of VOParams. Have added the new VOParam/VOField files to the Makefile

File size: 2.3 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 n, std::string U, std::string d, T v, int w, std::string u);
46    VOParam(const VOParam& other);
47    VOParam& operator= (const VOParam& other);
48    virtual ~VOParam(){};
49    // /// @brief Define a PARAM by individual parameters
50    //    template <class T> void define(std::string n, std::string U, std::string d, T v, int w, std::string u);
51 
52    /// @brief Print the PARAM entry
53    void printParam(std::ostream &stream);
54   
55  private:
56    std::string name;
57    std::string UCD;
58    std::string datatype;
59    std::string value;
60    int width;
61    std::string units;
62   
63  };
64
65}
66
67#endif //VOPARAM_HH
Note: See TracBrowser for help on using the repository browser.