summaryrefslogtreecommitdiff
path: root/libopie2/opienet/onetwork.h
Side-by-side diff
Diffstat (limited to 'libopie2/opienet/onetwork.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/onetwork.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/libopie2/opienet/onetwork.h b/libopie2/opienet/onetwork.h
index 93b129f..a953296 100644
--- a/libopie2/opienet/onetwork.h
+++ b/libopie2/opienet/onetwork.h
@@ -58,2 +58,5 @@
+namespace Opie {
+namespace Net {
+
class ONetworkInterface;
@@ -125,2 +128,4 @@ class ONetwork : public QObject
InterfaceMap _interfaces;
+ class Private;
+ Private *d;
};
@@ -236,2 +241,5 @@ class ONetworkInterface : public QObject
bool ioctl( int call, struct ifreq& ) const;
+ private:
+ class Private;
+ Private *d;
};
@@ -298,2 +306,4 @@ class OChannelHopper : public QObject
QValueList<int>::Iterator _channel;
+ class Private;
+ Private *d;
};
@@ -457,2 +467,4 @@ class OWirelessNetworkInterface : public ONetworkInterface
OChannelHopper* _hopper;
+ class Private;
+ Private *d;
};
@@ -481,2 +493,5 @@ class OMonitoringInterface
bool _prismHeader;
+ private:
+ class Private;
+ Private *d;
@@ -499,2 +514,5 @@ class OCiscoMonitoringInterface : public OMonitoringInterface
virtual void setChannel( int );
+ private:
+ class Private;
+ Private *d;
@@ -518,2 +536,5 @@ class OWlanNGMonitoringInterface : public OMonitoringInterface
virtual void setChannel( int );
+ private:
+ class Private;
+ Private *d;
@@ -536,2 +557,6 @@ class OHostAPMonitoringInterface : public OMonitoringInterface
virtual QString name() const;
+
+ private:
+ class Private;
+ Private *d;
};
@@ -555,4 +580,10 @@ class OOrinocoMonitoringInterface : public OMonitoringInterface
+ private:
+ class Private;
+ Private *d;
};
+}
+}
+
#endif // ONETWORK_H