// Copyright (C) 2015 Jérôme Leclercq // This file is part of the "Nazara Engine - Core module" // For conditions of distribution and use, see copyright notice in Config.hpp #include #include #include #include namespace Nz { /*! * \ingroup core * \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(); return out; } }