Line data Source code
1 : 2 : #ifndef CASAC_QUANTITY_H 3 : #define CASAC_QUANTITY_H 1 4 : 5 : namespace casac { 6 : struct Quantity 7 : { 8 : Quantity( ) { } 9 0 : 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