wifi: Prohibit overriding WifiInformationElement::Serialize() and ::GetSerializedSize()

This commit is contained in:
Stefano Avallone
2022-07-13 13:44:53 +02:00
parent 695f6ebd3e
commit 71b2bb334e

View File

@@ -247,7 +247,7 @@ public:
*
* \return an iterator
*/
virtual Buffer::Iterator Serialize (Buffer::Iterator i) const;
Buffer::Iterator Serialize (Buffer::Iterator i) const;
/**
* Deserialize entire IE, which must be present. The iterator
* passed in must be pointing at the Element ID (i.e., the very
@@ -294,7 +294,7 @@ public:
*
* \return the size of the serialized IE in bytes
*/
virtual uint16_t GetSerializedSize () const;
uint16_t GetSerializedSize () const;
// Each subclass must implement these pure virtual functions:
/**