2015-02-26 15:02:31 +00:00
|
|
|
|
2015-03-23 21:03:14 +00:00
|
|
|
#ifndef SWIG_CONERT_UNITS_HH
|
|
|
|
#define SWIG_CONERT_UNITS_HH
|
2015-02-26 15:02:31 +00: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 21:54:25 +00: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 15:02:31 +00:00
|
|
|
#endif
|