some fixes to enable Python bindings scanning

This commit is contained in:
Tom Henderson
2014-04-30 12:19:33 -07:00
parent 022360d1f3
commit 20e713630a
3 changed files with 6 additions and 1 deletions

View File

@@ -94,6 +94,9 @@ public:
int64_t AssignStreams (NetDeviceContainer c, int64_t stream);
private:
// Disable implicit constructors
LrWpanHelper (LrWpanHelper const &);
LrWpanHelper& operator= (LrWpanHelper const &);
/**
* \internal
*

View File

@@ -86,6 +86,9 @@ public:
*/
Ptr<const SpectrumModel> GetSpectrumModel (void) const;
private:
// Disable implicit copy constructors
LrWpanInterferenceHelper (LrWpanInterferenceHelper const &);
LrWpanInterferenceHelper& operator= (LrWpanInterferenceHelper const &);
/**
* The helpers SpectrumModel.
*/

View File

@@ -31,7 +31,6 @@ namespace ns3 {
class LrWpanPhy;
class LrWpanCsmaCa;
class SingleModelSpectrumChannel;
class SpectrumChannel;
class Node;