mirror of https://github.com/libAthena/athena.git
spelling corrections
This commit is contained in:
parent
11331e068e
commit
09e3d33ff2
|
@ -14,16 +14,16 @@ class IStreamReader : public IStream
|
||||||
public:
|
public:
|
||||||
virtual ~IStreamReader() {}
|
virtual ~IStreamReader() {}
|
||||||
|
|
||||||
/*! \brief Sets the Endianss of the stream
|
/*! \brief Sets the Endianness of the stream
|
||||||
*
|
*
|
||||||
* \param endian The Endianess to set \sa Endian
|
* \param endian The Endianness to set \sa Endian
|
||||||
*/
|
*/
|
||||||
inline void setEndian(Endian endian)
|
inline void setEndian(Endian endian)
|
||||||
{m_endian = endian;}
|
{m_endian = endian;}
|
||||||
|
|
||||||
/*! \brief Returns the current Endianness of the stream
|
/*! \brief Returns the current Endianness of the stream
|
||||||
*
|
*
|
||||||
* \return Endian The current Stream Endianess
|
* \return Endian The current Stream Endianness
|
||||||
*/
|
*/
|
||||||
inline Endian endian() const
|
inline Endian endian() const
|
||||||
{return m_endian;}
|
{return m_endian;}
|
||||||
|
|
|
@ -13,16 +13,16 @@ class IStreamWriter : public IStream
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~IStreamWriter() {}
|
virtual ~IStreamWriter() {}
|
||||||
/*! \brief Sets the Endianss of the stream
|
/*! \brief Sets the Endianness of the stream
|
||||||
*
|
*
|
||||||
* \param endian The Endianess to set \sa Endian
|
* \param endian The Endianness to set \sa Endian
|
||||||
*/
|
*/
|
||||||
inline void setEndian(Endian endian)
|
inline void setEndian(Endian endian)
|
||||||
{m_endian = endian;}
|
{m_endian = endian;}
|
||||||
|
|
||||||
/*! \brief Returns the current Endianness of the stream
|
/*! \brief Returns the current Endianness of the stream
|
||||||
*
|
*
|
||||||
* \return Endian The current Stream Endianess
|
* \return Endian The current Stream Endianness
|
||||||
*/
|
*/
|
||||||
inline Endian endian() const
|
inline Endian endian() const
|
||||||
{return m_endian;}
|
{return m_endian;}
|
||||||
|
|
Loading…
Reference in New Issue