summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profilerun.h
Side-by-side diff
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 @@
+#ifndef PROFILERUN_H
+#define PROFILERUN_H
+
+#include <asfullsetup.h>
+#include "profiledata.h"
+
+class ProfileRun : public AsFullSetup {
+
+public :
+
+ ProfileRun( ANetNodeInstance * NNI, ProfileData & D ) :
+ AsFullSetup( NNI )
+ { Data = &D; }
+
+ void detectState( NodeCollection * NC );
+ bool setState( NodeCollection * NC, Action_t A );
+ bool canSetState( State_t Curr, Action_t A );
+
+ bool handlesInterface( const QString & I );
+
+ virtual const QString & description( void )
+ { return Data->Description; }
+private :
+
+ ProfileData * Data;
+
+};
+#endif