diff --git a/Cantera/cxx/src/importPhase.cpp b/Cantera/cxx/src/importPhase.cpp new file mode 100644 index 000000000..90d88ac4a --- /dev/null +++ b/Cantera/cxx/src/importPhase.cpp @@ -0,0 +1,19 @@ +/** + * @file cxx/src/importPhase.cpp + */ + +#include + +#include "ThermoPhase.h" +#include "ThermoFactory.h" +//#include "../include/importPhase.h" + +namespace Cantera { + + ThermoPhase* importPhase(std::string infile, std::string id) { + ThermoPhase* p = newPhase(infile, id); + return p; + } +} + +