cantera/Cantera/cxx/writelog.cpp
2003-08-08 00:34:43 +00:00

11 lines
145 B
C++

#include <string>
#include <iostream>
using namespace std;
namespace Cantera {
void writelog(const string& s) {
cout << s;
}
}