summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/gprs/GPRSdata.h
blob: d68c3f267c08b4f373e10fda9dea3e143608fe63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef GPRS_DATA_H
#define GPRS_DATA_H

#include <qvector.h>
class GPRSRoutingEntry {
public :
      QString Address;
      short   Mask;
};

class GPRSData {
public :
      QString                APN;
      QString                User;
      QString                Password;
      QString                DNS1;
      QString                DNS2;
      bool                   SetIfSet;
      bool                   DefaultGateway;
      short                  Debug;
      QVector<GPRSRoutingEntry> Routing;
} ; 

#endif