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

@@ -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