open-bitbucket may be offline for system maintenance Thursday evenings from 10pm to 1am ET.
Learn more about cloning repositories
You have read-only access
#ifndef CASAC_QUANTITY_H
#define CASAC_QUANTITY_H 1
namespace casac {
struct Quantity
{
Quantity( ) { }
Quantity(std::vector<double> arg0, std::string arg1) : value(arg0), units(arg1) { }
std::vector<double> value;
std::string units;
};
}
#endif
Everything looks good. We'll let you know here if there's anything you should know about.