cantera/include/cantera/kinetics.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

17 lines
423 B
C

/**
* @file kinetics.h
*
* Support for chemical kinetics calculation from C++ application programs.
* This header file includes headers needed to create and use objects for
* evaluating chemical kinetic mechanisms.
*/
#ifndef CXX_INCL_KINETICS
#define CXX_INCL_KINETICS
#include "kinetics/Kinetics.h"
#include "kinetics/Reaction.h"
#include "kinetics/KineticsFactory.h"
#include "kinetics/importKinetics.h"
#endif