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.
18 lines
453 B
C
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
|