cantera/tools/doc/doxyinput/edemo.cpp
Harry Moffat 9b2d89619b Added -c to the install line, so that the default install-sh will
do a "cp" operation and not a "mv" operation.
2007-07-12 19:33:45 +00:00

15 lines
180 B
C++

#include <cantera/Cantera.h>
void demoprog() {
// Calls Cantera
}
int main() {
try {
demoprog();
}
catch (CanteraError) {
showErrors(cout);
}
}