1.1 --- a/src/common/header.h Mon Jun 02 10:38:10 2008 -0700
1.2 +++ b/src/common/header.h Mon Jun 02 10:38:19 2008 -0700
1.3 @@ -34,9 +34,7 @@
1.4 *
1.5 * Every Protocol header which needs to be inserted or removed
1.6 * from a Packet instance must derive from this base class and
1.7 - * implement the following public methods:
1.8 - * - a default constructor: is used by the internal implementation
1.9 - * if the Packet class.
1.10 + * implement the pure virtual methods defined here.
1.11 *
1.12 * Sample code which shows how to create a new type of Header, and how to use it,
1.13 * is shown in the sample file samples/main-packet-header.cc
2.1 --- a/src/common/trailer.h Mon Jun 02 10:38:10 2008 -0700
2.2 +++ b/src/common/trailer.h Mon Jun 02 10:38:19 2008 -0700
2.3 @@ -35,9 +35,7 @@
2.4 *
2.5 * Every Protocol trailer which needs to be inserted or removed
2.6 * from a Packet instance must derive from this base class and
2.7 - * implement the following public methods:
2.8 - * - a default constructor: is used by the internal implementation
2.9 - * if the Packet class.
2.10 + * implement the pure virtual methods defined here.
2.11 */
2.12 class Trailer : public Chunk
2.13 {