#ifndef POINT_IDL #define POINT_IDL struct PValue { double val; }; struct Point { double x; double y; PValue pval; }; #endif