X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketData.hh;h=96db5b14fb4fe1ef3a6e233e116cd7903c41ee5a;hb=16d94efc2159cba35fc44e5b26747ae0a2ab237b;hp=773b9ddc790a1f635e2ee94c6850843ae72b6576;hpb=a1a6c76a214ad1935032826713cabaf9ac57bf07;p=senf.git diff --git a/Packets/PacketData.hh b/Packets/PacketData.hh index 773b9dd..96db5b1 100644 --- a/Packets/PacketData.hh +++ b/Packets/PacketData.hh @@ -31,6 +31,7 @@ #include #include #include "../Utils/safe_bool.hh" +#include "../Utils/Exception.hh" #include "PacketTypes.hh" //#include "PacketData.mpp" @@ -97,18 +98,19 @@ namespace senf { ///\name Sequence interface to raw data ///@{ - iterator begin() const; /**< Returns an random access iterator referring - to the first byte of the packet data. */ - iterator end() const; /**< Returns an random access iterator referring to the - element past the end of the packet data. */ + iterator begin() const; ///< Return iterator to beginning + /**< Returns an random access iterator referring to the + first byte of the packet data. */ + iterator end() const; ///< Return iterator to end + /**< Returns an random access iterator referring to the + byte past the end of the packet data. */ size_type size() const; ///< Returns the number of bytes in the packet data. bool empty() const; ///< Test whether the packet data is empty. - /**< Returns whether the packet data is empty, i.e. - whether its size is 0. This function does not modify - the content of the packet data in any way. To clear - the content use clear() */ - byte operator[](size_type n) const; - byte & operator[](size_type n); + /**< Returns whether the packet data is empty, i.e. whether its size + is 0. This function does not modify the content of the packet + data in any way. To clear the content use clear() */ + byte operator[](size_type n) const; ///< Access byte in the packet data + byte & operator[](size_type n); ///< Access byte in the packet data // Modifying the raw packet data @@ -128,8 +130,7 @@ namespace senf { void erase(iterator pos); void erase(iterator first, iterator last); - void clear(); /**< All bytes of the packet data dropped, - leaving the container with a size of 0. */ + void clear(); ///< All bytes of the packet data dropped, leaving the container with a size of 0. */ void resize(size_type n, byte v=0); @@ -159,8 +160,8 @@ namespace senf { This exception is signaled whenever an operation tries to access an out-of-bounds data byte. If the packet has been implemented correctly, this signals a malformed packet. */ - struct TruncatedPacketException : public std::exception - { virtual char const * what() const throw() { return "truncated packet"; } }; + struct TruncatedPacketException : public senf::Exception + { TruncatedPacketException() : senf::Exception("truncated packet"){} }; /** \brief Re-validating data iterator