summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profile_NNI.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/profile/profile_NNI.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/profile/profile_NNI.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/profile/profile_NNI.h b/noncore/settings/networksettings2/profile/profile_NNI.h
new file mode 100644
index 0000000..dfeb178
--- a/dev/null
+++ b/noncore/settings/networksettings2/profile/profile_NNI.h
@@ -0,0 +1,45 @@
1#ifndef PROFILE_H
2#define PROFILE_H
3
4#include <netnode.h>
5#include "profiledata.h"
6#include "profilerun.h"
7
8class ProfileNetNode;
9class ProfileEdit;
10
11class AProfile : public ANetNodeInstance {
12
13public :
14
15 AProfile( ProfileNetNode * PNN );
16
17 QWidget * edit( QWidget * parent );
18 QString acceptable( void );
19 void commit( void );
20
21 const QString & description( void )
22 { return Data.Description; }
23 RuntimeInfo * runtime( void )
24 { if( RT == 0 )
25 RT = new ProfileRun( this, Data );
26 return RT;
27 }
28
29 virtual void * data( void )
30 { return (void *)&Data; }
31
32protected :
33
34 virtual void setSpecificAttribute( QString & Attr, QString & Value );
35 virtual void saveSpecificAttribute( QTextStream & TS );
36
37private :
38
39 ProfileEdit * GUI;
40 ProfileData Data;
41 ProfileRun * RT;
42
43};
44
45#endif