2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[2206] Remove redundant return descriptions

This commit is contained in:
Mukund Sivaraman
2012-10-03 11:04:51 +05:30
parent 5c97541720
commit c4c3946bad
2 changed files with 1 additions and 14 deletions

View File

@@ -73,20 +73,14 @@ public:
/// \brief Return the ZoneTableHeader for the zone table segment.
///
/// NOTE: This method should never return \c NULL.
///
/// \return Returns the ZoneTableHeader for this zone table segment.
virtual ZoneTableHeader* getHeader() = 0;
/// \brief const version of \c getHeader().
///
/// NOTE: This method should never return \c NULL.
///
/// \return Returns the ZoneTableHeader for this zone table segment.
virtual const ZoneTableHeader* getHeader() const = 0;
/// \brief Return the MemorySegment for the zone table segment.
///
/// \return Returns the MemorySegment for this zone table segment.
virtual isc::util::MemorySegment& getMemorySegment() = 0;
/// \brief Create an instance depending on the memory segment model

View File

@@ -47,22 +47,15 @@ public:
/// segment implementation.
///
/// NOTE: This method will never return \c NULL.
///
/// \return Returns the ZoneTableHeader for this zone table segment.
virtual ZoneTableHeader* getHeader();
/// \brief const version of \c getHeader().
///
/// NOTE: This method will never return \c NULL.
///
/// \return Returns the ZoneTableHeader for this zone table segment.
virtual const ZoneTableHeader* getHeader() const;
/// \brief Return the MemorySegment for the local zone table segment
/// implementation.
///
/// \return Returns the MemorySegment for this zone table segment (a
/// MemorySegmentLocal instance).
/// implementation (a MemorySegmentLocal instance).
virtual isc::util::MemorySegment& getMemorySegment();
private: