first implementation of filename clean method

- test as independent application first
This commit is contained in:
Mark Olesen
2009-07-25 20:32:29 +02:00
parent 91157af10c
commit f8d87e2ab4
4 changed files with 223 additions and 3 deletions

View File

@ -27,6 +27,7 @@ Application
Description
Print the OpenFOAM version strings.
Simultaneously the smallest possible program to use a minimal bit of
the OpenFOAM library
@ -37,9 +38,9 @@ Description
int main()
{
std::cerr
<< "build " << Foam::FOAMbuild << "\n"
<< "version " << Foam::FOAMversion << "\n";
std::cout
<< "version " << Foam::FOAMversion << "\n"
<< "build " << Foam::FOAMbuild << "\n";
return 0;
}