cantera/Cantera/cxx/include/importPhase.h
2005-06-18 16:58:39 +00:00

18 lines
295 B
C++

#ifndef CXX_IMPORTPHASE
#define CXX_IMPORTPHASE
#include <string>
#include "kernel/ThermoPhase.h"
#include "kernel/importCTML.h"
namespace Cantera {
ThermoPhase* importPhase(string infile, string id="") {
ThermoPhase* p = newPhase(infile, id);
return p;
}
}
#endif