traffic-control: fix invalid use of incomplete type

This commit is contained in:
Tom Henderson
2016-03-08 21:38:59 -08:00
parent 4bfd4c7a9d
commit 8d64ccb91b

View File

@@ -194,6 +194,16 @@ protected:
virtual void NotifyNewAggregate (void);
private:
/**
* \brief Copy constructor
* Disable default implementation to avoid misuse
*/
TrafficControlLayer (TrafficControlLayer const &);
/**
* \brief Assignment operator
* Disable default implementation to avoid misuse
*/
TrafficControlLayer& operator= (TrafficControlLayer const &);
/**
* \brief Protocol handler entry.
* This structure is used to demultiplex all the protocols.