Example C++ header file for GridConversion. More...
#include <string>
Go to the source code of this file.
Namespaces | |
GridConversion | |
Project-specific namespace. | |
Functions | |
std::string | ExampleFunction (const std::string &instring) |
Example function for GridConversion (this is a brief description). More... | |
double | TrapezoidQuadrature (double(*f)(double), double x0, double xn, int n) |
Integrates f with composite trapezoid rule. More... | |
double | MidPointQuadrature (double(*f)(double), double x0, double xn, int n) |
Integrates f with composite midpoint rule. More... | |
Example C++ header file for GridConversion.
This file is part of an example C++ project at IllinoisRocstar. It demonstrates doxygen usage and provides example constructs and fixtures to be used in example tests.
At IR, we like all files to have the tags (file, brief, and ingroup). Other tags are optional and as needed or desired. Such as @author and @bug.
Definition in file ExampleHeader.H.