00001 #ifndef _WINC_THETAEDATA
00002 #define _WINC_THETAEDATA
00003
00004 namespace WXP {
00005 class ThetaEData {
00006 float index;
00007 float base;
00008 float top;
00009 float max;
00010 float maxp;
00011 float min;
00012 float minp;
00013
00014 public:
00015 ThetaEData();
00016 int init();
00017 inline float getIndex(){ return index; };
00018 inline float getBase(){ return base; };
00019 inline float getTop(){ return top; };
00020 inline float getMax(){ return max; };
00021 inline float getMaxPres(){ return maxp; };
00022 inline float getMin(){ return min; };
00023 inline float getMinPres(){ return minp; };
00024
00025 friend class UpaCalc;
00026 friend class SoundParams;
00027 };
00028 }
00029 #endif
00030