X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacketData.hh;h=a2c1fa1af77ede4cba6c63c26dafe5bba83c20ce;hb=0734bd14c709ca5ba1d0ed69c5b9f5d1487e5faa;hp=c316778c92c0a3b73ed9ca595ae5d9ce205b89c7;hpb=54eed72c506b09ef5b4be0b62fecedfbc0e3f261;p=senf.git diff --git a/Packets/PacketData.hh b/Packets/PacketData.hh index c316778..a2c1fa1 100644 --- a/Packets/PacketData.hh +++ b/Packets/PacketData.hh @@ -1,6 +1,8 @@ -// Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) +// $Id$ +// +// Copyright (C) 2007 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY // Stefan Bund // // This program is free software; you can redistribute it and/or modify @@ -28,7 +30,7 @@ #include #include #include -#include "../Utils/SafeBool.hh" +#include "../Utils/safe_bool.hh" #include "PacketTypes.hh" //#include "PacketData.mpp" @@ -95,18 +97,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 @@ -126,8 +129,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); @@ -175,7 +177,7 @@ namespace senf { : public boost::iterator_facade< safe_data_iterator, PacketData::value_type, boost::random_access_traversal_tag >, - public ComparableSafeBool + public comparable_safe_bool { public: typedef PacketData::size_type size_type;