00001 #ifndef _WINC_LCLDATA 00002 #define _WINC_LCLDATA 00003 00004 namespace WXP { 00005 struct LclData { 00006 float p; 00007 float t; 00008 00009 LclData(); 00010 int init(); 00011 inline float getP(){ return p; }; 00012 inline float getT(){ return t; }; 00013 int print(); 00014 00015 }; 00016 00017 } 00018 #endif 00019
1.6.1