*** empty log message ***

This commit is contained in:
Dave Goodwin 2003-06-08 14:37:50 +00:00
parent 2a00814a9d
commit c7f6cd18be
2 changed files with 13 additions and 0 deletions

View file

@ -7,6 +7,8 @@
#endif
#include <vector>
#include <algorithm>
using namespace std;
#include "ct_defs.h"

11
Cantera/src/funcs.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef CT_FUNCS_H
#define CT_FUNCS_H
#include "ct_defs.h"
namespace Cantera {
doublereal linearInterp(doublereal x, const vector_fp& xpts,
const vector_fp& fpts);
}
#endif