From 218f2f43b14f42a3003b2b30138212f4db3a80a7 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Mon, 24 Oct 2005 18:03:12 +0000 Subject: [PATCH] Added a thermo.h file to the cxx directory. This file is analogous to the transport.h file. --- Cantera/cxx/include/thermo.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 Cantera/cxx/include/thermo.h diff --git a/Cantera/cxx/include/thermo.h b/Cantera/cxx/include/thermo.h new file mode 100755 index 000000000..41291fcee --- /dev/null +++ b/Cantera/cxx/include/thermo.h @@ -0,0 +1,14 @@ +/** + * @file transport.h + * + * Support for thermo property calculation from C++ application programs. + * This header file includes several headers from the Cantera kernel needed + * to evaluate thermo properties. + */ + +#ifndef CT_THERMO_INCL +#define CT_THERMO_INCL + +#include "kernel/thermo/SingleSpeciesTP.h" + +#endif