mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
10 lines
279 B
C++
10 lines
279 B
C++
|
|
#ifndef SWIG_CONERT_UNITS_HH
|
|
#define SWIG_CONERT_UNITS_HH
|
|
#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 ) ;
|
|
|
|
#endif
|