30 lines
574 B
C++
Raw Normal View History

2015-02-26 09:02:31 -06:00
/*
PURPOSE: (Conversion Function Class for Units Conversion Package)
2015-02-26 09:02:31 -06:00
PROGRAMMERS:
(((John M. Penn) (L-3Com/Titan) (May 2006) (v1.0)
(Initial Release)))
2015-02-26 09:02:31 -06:00
*/
#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
2015-02-26 09:02:31 -06:00
};
#endif