summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profiledata.h
blob: c9577e523a1f7738aabe5b021ea604f9cfa95a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef PROFILE_DATA_H
#define PROFILE_DATA_H

#include <qstring.h>
class ProfileData {
public :
      QString Description;
      // start up automatically
      bool Automatic;
      // if started up automatically, ask user for confirmation
      bool Confirm;
      // Do not bring this connection up
      bool Disabled;
      bool TriggerVPN;
} ; 

#endif