mirror of
https://github.com/nasa/trick.git
synced 2024-12-23 15:02:25 +00:00
23 lines
371 B
C++
23 lines
371 B
C++
#ifndef UDUNITS_HH
|
|
#define UDUNITS_HH
|
|
/*
|
|
PURPOSE: ( UdUnits Class )
|
|
*/
|
|
#include <udunits2.h>
|
|
#include <string>
|
|
|
|
namespace Trick {
|
|
|
|
class UdUnits {
|
|
public:
|
|
static ut_system * get_u_system() ;
|
|
int read_default_xml() ;
|
|
int read_user_xml(std::string) ;
|
|
|
|
protected:
|
|
static ut_system * u_system ; // ** system of units
|
|
} ;
|
|
|
|
}
|
|
#endif
|