From 8068945ce7060a5684db442635b2a7524033c857 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sat, 5 May 2007 00:30:57 +0000 Subject: [PATCH] forgot a file. --- Cantera/cxx/src/importPhase.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Cantera/cxx/src/importPhase.cpp 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; + } +} + +