2015-02-26 09:02:31 -06:00
|
|
|
|
2015-03-23 16:03:14 -05:00
|
|
|
#ifndef SWIG_CONERT_UNITS_HH
|
|
|
|
#define SWIG_CONERT_UNITS_HH
|
2015-02-26 09:02:31 -06:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
int convert_united_value( std::string & to_units , std::string & from_units , long long * val ) ;
|
|
|
|
int convert_united_value( std::string & to_units , std::string & from_units , double * val ) ;
|
|
|
|
|
2016-03-16 16:54:25 -05:00
|
|
|
int scale_united_value( std::string & to_units , std::string & from_units , long long * val ) ;
|
|
|
|
int scale_united_value( std::string & to_units , std::string & from_units , double * val ) ;
|
2015-02-26 09:02:31 -06:00
|
|
|
#endif
|