Make Buffer::CreateFullCopy private

This commit is contained in:
Alexander Krotov
2015-08-02 19:26:37 +03:00
parent 01983101a6
commit b62cf68711

View File

@@ -560,14 +560,6 @@ private:
*/
inline Buffer::Iterator End (void) const;
/**
* \brief Create a full copy of the buffer, including
* all the internal structures.
*
* \returns a copy of the buffer
*/
Buffer CreateFullCopy (void) const;
/**
* \brief Return the number of bytes required for serialization.
* \return the number of bytes.
@@ -698,6 +690,14 @@ private:
uint8_t m_data[1];
};
/**
* \brief Create a full copy of the buffer, including
* all the internal structures.
*
* \returns a copy of the buffer
*/
Buffer CreateFullCopy (void) const;
/**
* \brief Transform a "Virtual byte buffer" into a "Real byte buffer"
*/