summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/cable/cable_NNI.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/cable/cable_NNI.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/cable/cable_NNI.cpp30
1 files changed, 23 insertions, 7 deletions
diff --git a/noncore/settings/networksettings2/cable/cable_NNI.cpp b/noncore/settings/networksettings2/cable/cable_NNI.cpp
index ca21135..4bd9421 100644
--- a/noncore/settings/networksettings2/cable/cable_NNI.cpp
+++ b/noncore/settings/networksettings2/cable/cable_NNI.cpp
@@ -49,6 +49,29 @@ void ACable::saveSpecificAttribute( QTextStream & TS ) {
((Data.SoftwareControl) ? "yes" : "no") << endl;
}
+short ACable::generateFileEmbedded( const QString & ID,
+ const QString & Path,
+ QTextStream & TS,
+ long DevNr ) {
+ short rvl, rvd;
+
+ rvl = 1;
+ if( ID == "peers" ) {
+ TS << Data.Device
+ << endl;
+ TS << Data.Speed
+ << endl;
+ TS << "lock "
+ << Data.LockFile
+ << endl;
+ rvl = 0;
+ }
+
+ rvd = ANetNodeInstance::generateFileEmbedded( ID, Path, TS, DevNr );
+ return (rvd == 2 || rvl == 2 ) ? 2 :
+ (rvd == 0 || rvl == 0 ) ? 0 : 1;
+}
+
QWidget * ACable::edit( QWidget * parent ) {
GUI = new CableEdit( parent );
GUI->showData( Data );
@@ -64,10 +87,3 @@ void ACable::commit( void ) {
setModified( 1 );
}
}
-
-bool ACable::generateDataForCommonFile(
- SystemFile & ,
- long ) {
- return 1;
-}
-