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.
17 lines
423 B
C
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
|