Documentation for ByteArray and ByteStream

Former-commit-id: 4d2d0de93562077e030b4304b57f6c95b32185b5
This commit is contained in:
Gawaboumga
2016-02-21 14:32:59 +01:00
parent f540029825
commit d340553023
4 changed files with 594 additions and 0 deletions

View File

@@ -9,6 +9,19 @@
namespace Nz
{
/*!
* \class Nz::ByteArray
* \brief Core class that represents an array of bytes
*/
/*!
* \brief Output operator
* \return The stream
*
* \param out The stream
* \param byteArray The ByteArray to output
*/
std::ostream& operator<<(std::ostream& out, const Nz::ByteArray& byteArray)
{
out << byteArray.ToHex();