15 lines
180 B
C++
15 lines
180 B
C++
#include <cantera/Cantera.h>
|
|
|
|
void demoprog() {
|
|
// Calls Cantera
|
|
}
|
|
|
|
int main() {
|
|
try {
|
|
demoprog();
|
|
}
|
|
catch (CanteraError) {
|
|
showErrors(cout);
|
|
}
|
|
}
|
|
|