cantera/Cantera/src/importXML.h
2003-04-14 17:57:48 +00:00

25 lines
323 B
C++
Executable file

/**
* @file importXML.h
*
*/
// Copyright 2001 California Institute of Technology
#ifndef CT_IMPORTXML_H
#define CT_IMPORTXML_H
#include <string>
#include "GasKinetics.h"
namespace Cantera {
bool isXMLFile(string infile);
bool importXML(const string& infile, phase_t& gas, Kinetics& kin);
}
#endif