00001 #ifndef GPRS_DATA_H 00002 #define GPRS_DATA_H 00003 00004 #include <qvector.h> 00005 class GPRSRoutingEntry { 00006 public : 00007 QString Address; 00008 short Mask; 00009 }; 00010 00011 class GPRSData { 00012 public : 00013 QString APN; 00014 QString User; 00015 QString Password; 00016 QString DNS1; 00017 QString DNS2; 00018 bool SetIfSet; 00019 bool DefaultGateway; 00020 short Debug; 00021 QVector<GPRSRoutingEntry> Routing; 00022 } ; 00023 00024 #endif
1.4.2