summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/nsdata.h
blob: a0ae7d12b8f63cbee36d71fe49a36d6379ef4aa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef __NSDATA_H
#define __NSDATA_H

#include <netnode.h>

class NetworkSettingsData {

public :

      NetworkSettingsData( void );
      ~NetworkSettingsData( void );

      void loadSettings( void );
      QString saveSettings( void );

      QString generateSettings( void );

      bool isModified( void );
      inline void setModified( bool M ) 
        { ForceModified = M; }

      QList<NodeCollection> collectPossible( const char * Interface );
      // return TRUE if we need gui to decide
      bool canStart( const char * Interface );

private :

      bool ForceModified;

      // collect strings in config file nobody wants
      QStringList LeftOvers;
};

#endif