13 lines
259 B
C++
Executable file
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;
|
|
}
|
|
}
|