cantera/include/cantera/thermo.h
Ray Speth 14b9454819 [C++] Clean up of top-level headers
These headers should only include general functionality, i.e. base classes and
factory methods. Users working directly with derived types can include the
relevant headers directly.

Deprecate some top-level headers which are not really useful.
2016-05-14 16:10:10 -04:00

18 lines
453 B
C

/**
* @file thermo.h
*
* Support for thermo property calculation from C++ application programs.
* This header file includes several headers needed to create and use objects
* which evaluate thermo properties.
*/
#ifndef CT_THERMO_INCL
#define CT_THERMO_INCL
#include "thermo/ThermoPhase.h"
#include "thermo/Species.h"
#include "thermo/ThermoFactory.h"
#include "thermo/SpeciesThermoInterpType.h"
#include "thermo/SpeciesThermoFactory.h"
#endif