forgot a file.

This commit is contained in:
Harry Moffat 2007-05-05 00:30:57 +00:00
parent 910a2abf86
commit 8068945ce7

View file

@ -0,0 +1,19 @@
/**
* @file cxx/src/importPhase.cpp
*/
#include <string>
#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;
}
}