cantera/test_problems/cathermo/testIAPWS/testIAPWSphi.cpp
Ray Speth a6f939c2fe Applied consistent formatting to all C++ code
Done using astyle:
astyle --style=kr --add-brackets --indent=spaces=4 --indent-col1-comments --unpad-paren --pad-header --align-pointer=type --lineend=linux
2012-02-10 17:24:00 +00:00

20 lines
305 B
C++

#include "kernel/WaterPropsIAPWSphi.h"
#include <new>
#include <cstdio>
using namespace std;
int main()
{
#ifdef _MSC_VER
_set_output_format(_TWO_DIGIT_EXPONENT);
#endif
WaterPropsIAPWSphi* phi = new WaterPropsIAPWSphi();
phi->check1();
phi->check2();
delete phi;
return 0;
}