summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profiledata.h
blob: 376b39319fe3a488ec66f0a11311222b7d8e73ac (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;
      // bring this networkSetup up
      bool Enabled;
      bool TriggerVPN;
} ; 

#endif