cantera/tools/src/protocxx.cpp
2003-04-14 17:57:48 +00:00

13 lines
259 B
C++
Executable file

#include "Cantera.h"
// include additional header files here if needed
main(int argc, char** argv) {
try {
// your code goes here
}
catch (CanteraError) {
showErrors(cerr);
cerr << "program terminating." << endl;
}
}