Files
cantera/Cantera/user/user.cpp
Dave Goodwin 946cf5c3e0 initial import
2003-11-01 10:11:14 +00:00

17 lines
238 B
C++

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