cantera/test_problems/cathermo/testIAPWS/testIAPWSphi.cpp
Ray Speth 8b699082c8 Removed cantera/kernel from include path
The "cantera/kernel" directory is now part of the include path only
when building the Cantera kernel. All other modules include files in
this directory as "kernel/header.h".

This fixes a problem distinguishing between kernel/Kinetics.h and
kinetics.h on Windows.
2012-01-09 17:31:21 +00:00

20 lines
311 B
C++

/*
* $Id: testIAPWSphi.cpp,v 1.2 2008/12/17 17:31:13 hkmoffa Exp $
*/
#include "kernel/WaterPropsIAPWSphi.h"
#include <new>
#include <cstdio>
using namespace std;
int main () {
WaterPropsIAPWSphi *phi = new WaterPropsIAPWSphi();
phi->check1();
phi->check2();
delete phi;
return 0;
}