mirror of
https://github.com/nasa/trick.git
synced 2025-01-25 13:49:51 +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.
30 lines
574 B
C++
30 lines
574 B
C++
/*
|
|
PURPOSE: (Conversion Function Class for Units Conversion Package)
|
|
|
|
PROGRAMMERS:
|
|
(((John M. Penn) (L-3Com/Titan) (May 2006) (v1.0)
|
|
(Initial Release)))
|
|
*/
|
|
|
|
#ifndef UCFN_HH
|
|
#define UCFN_HH
|
|
#include <string.h>
|
|
#include <iostream>
|
|
|
|
class UCFn {
|
|
public:
|
|
double C[2]; /* ** */
|
|
char t_name[32]; /* ** */
|
|
char f_name[32]; /* ** */
|
|
|
|
UCFn( const char *t_name, const char *f_name, double C1, double C0);
|
|
double eval( double val);
|
|
|
|
#ifndef SWIG
|
|
friend std::ostream& operator<< ( std::ostream& s, const UCFn *p);
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|