2016-05-05 19:49:49 +00:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "trick/UdUnits.hh"
|
|
|
|
|
|
|
|
ut_system * Trick::UdUnits::u_system = NULL ;
|
|
|
|
|
|
|
|
ut_system * Trick::UdUnits::get_u_system() {
|
|
|
|
return u_system ;
|
|
|
|
}
|
|
|
|
int Trick::UdUnits::read_default_xml() {
|
|
|
|
/* Initialize the udunits-2 library */
|
|
|
|
ut_set_error_message_handler(ut_ignore) ;
|
|
|
|
if( (u_system = ut_read_xml( NULL )) == NULL ) {
|
|
|
|
std::cerr << "Error initializing udunits-2 unit system" << std::endl ;
|
|
|
|
return -1 ;
|
|
|
|
}
|
|
|
|
ut_set_error_message_handler(ut_write_to_stderr) ;
|
|
|
|
|
|
|
|
return 0 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Trick::UdUnits::read_user_xml(std::string file_name) {
|
2017-11-29 21:35:16 +00:00
|
|
|
(void)file_name;
|
2016-05-05 19:49:49 +00:00
|
|
|
return 0 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|