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

#include <qstring.h>
typedef struct ProfileData {
      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;
} ProfileData_t; 

#endif