mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
18 lines
283 B
C
18 lines
283 B
C
// Some test code
|
|
|
|
#include "IOstreams.H"
|
|
|
|
namespace Foam
|
|
{
|
|
void printTest()
|
|
{
|
|
Info<< nl << "Using old stub" << nl;
|
|
|
|
#if OPENFOAM
|
|
Info<< "OPENFOAM=" << OPENFOAM << nl;
|
|
#else
|
|
Info<< "OPENFOAM is undefined" << nl;
|
|
#endif
|
|
}
|
|
}
|