summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profiledata.h
blob: b4168e216019fb14d51bfd44e5f4e407bbca67ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
} ProfileData_t; 

#endif