Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
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.
2015-03-23 16:03:14 -05:00

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