Bug 1838 - FlowMonitorHelper must not be copied.

This commit is contained in:
Tommaso Pecorella
2014-01-16 09:46:21 +01:00
parent 123caf7cf3
commit 2ce9615e73
2 changed files with 15 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ Bugs fixed
- Bug 1786 - os << int64x64_t prints un-normalized fractional values
- Bug 1821 - Setting an interface to Down state will cause various asserts in IPv6
- Bug 1837 - AODV crashes when using multiple interfaces
- Bug 1838 - FlowMonitorHelper must not be copied.
Release 3.19
=============

View File

@@ -80,6 +80,20 @@ public:
Ptr<FlowClassifier> GetClassifier ();
private:
/**
* \brief Copy constructor
*
* Defined and unimplemented to avoid misuse
*/
FlowMonitorHelper (const FlowMonitorHelper&);
/**
* \brief Copy constructor
*
* Defined and unimplemented to avoid misuse
* \returns
*/
FlowMonitorHelper& operator= (const FlowMonitorHelper&);
ObjectFactory m_monitorFactory; //!< Object factory
Ptr<FlowMonitor> m_flowMonitor; //!< the FlowMonitor object
Ptr<FlowClassifier> m_flowClassifier; //!< the FlowClassifier object