16 lines
364 B
C
Executable file
16 lines
364 B
C
Executable file
/**
|
|
* @file equilibrium.h
|
|
* cxx layer - Header file providing support for chemical equilibrium calculations
|
|
* (see \ref equilfunctions)
|
|
*/
|
|
#ifndef CT_EQUIL_INCL
|
|
#define CT_EQUIL_INCL
|
|
#include "kernel/equil.h"
|
|
#include "kernel/ChemEquil.h"
|
|
#include "kernel/MultiPhaseEquil.h"
|
|
#ifdef WITH_VCSNONIDEAL
|
|
#include "kernel/vcs_MultiPhaseEquil.h"
|
|
#endif
|
|
#endif
|
|
|
|
|