summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profiledata.h
blob: 2f7060d1536afc5f6d45287d6f5032de3abde581 (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 networkSetup up
      bool Disabled;
      bool TriggerVPN;
} ; 

#endif