casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Quantity.h
Go to the documentation of this file.
1 
2 #ifndef CASAC_QUANTITY_H
3 #define CASAC_QUANTITY_H 1
4 
5 namespace casac {
6  struct Quantity
7  {
8  Quantity( ) { }
9  Quantity(std::vector<double> arg0, std::string arg1) : value(arg0), units(arg1) { }
10  std::vector<double> value;
11  std::string units;
12 
13  };
14 }
15 #endif
std::string units
Definition: Quantity.h:11
Quantity(std::vector< double > arg0, std::string arg1)
Definition: Quantity.h:9
std::vector< double > value
Definition: Quantity.h:10