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.
20 lines
311 B
C++
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;
|
|
}
|