add Print to the Chunk base class.

This commit is contained in:
Mathieu Lacage
2008-03-19 10:32:06 -07:00
parent 2f666d9622
commit e5b7c28375

View File

@@ -12,6 +12,7 @@ class Chunk : public ObjectBase
static TypeId GetTypeId (void);
virtual uint32_t Deserialize (Buffer::Iterator start) = 0;
virtual void Print (std::ostream &os) const = 0;
};
} // namespace ns3