/* * This is an example of a user-defined function that can be linked into Cantera. */ #include #include "ct_defs.h" using namespace Cantera; namespace User { using namespace std; void hello() { cout << "Hello!" << endl; } }