00001 #ifndef _WINC_MAP 00002 #define _WINC_MAP 00003 00004 #include <WXP/Plot.h> 00005 #include <WXP/Points.h> 00006 00007 namespace WXP { 00008 class Map { 00009 int proj; 00010 int fill; 00011 public: 00012 00013 Map(); 00014 int setFill( int val ); 00015 int draw( Plot &plot, const char *file ); 00016 int drawLatLon( Plot &plot, float dlat, float dlon ); 00017 }; 00018 } 00019 #endif
1.6.1