summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profilerun.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/profile/profilerun.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/profile/profilerun.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/profile/profilerun.h b/noncore/settings/networksettings2/profile/profilerun.h
new file mode 100644
index 0000000..d3797b5
--- a/dev/null
+++ b/noncore/settings/networksettings2/profile/profilerun.h
@@ -0,0 +1,28 @@
1#ifndef PROFILERUN_H
2#define PROFILERUN_H
3
4#include <asfullsetup.h>
5#include "profiledata.h"
6
7class ProfileRun : public AsFullSetup {
8
9public :
10
11 ProfileRun( ANetNodeInstance * NNI, ProfileData & D ) :
12 AsFullSetup( NNI )
13 { Data = &D; }
14
15 void detectState( NodeCollection * NC );
16 bool setState( NodeCollection * NC, Action_t A );
17 bool canSetState( State_t Curr, Action_t A );
18
19 bool handlesInterface( const QString & I );
20
21 virtual const QString & description( void )
22 { return Data->Description; }
23private :
24
25 ProfileData * Data;
26
27};
28#endif