Browse Source

Doxygen documentation for MemoryZone

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac444@3940 e5f2f494-b856-4b98-b285-d166d9295462
Michal Vaner 14 years ago
parent
commit
f1a401dc35
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/lib/datasrc/memory_datasrc.h

+ 8 - 0
src/lib/datasrc/memory_datasrc.h

@@ -58,14 +58,22 @@ public:
     virtual ~MemoryZone();
     //@}
 
+    /// \brief Returns the origin of the zone.
     virtual const isc::dns::Name& getOrigin() const;
+    /// \brief Returns the class of the zone.
     virtual const isc::dns::RRClass& getClass() const;
+    /// \brief Looks up an RRset in the zone.
+    ///
+    /// See documentation in \c Zone.
     virtual FindResult find(const isc::dns::Name& name,
                             const isc::dns::RRType& type) const;
 
 private:
+    /// \name Hidden private data
+    //@{
     struct MemoryZoneImpl;
     MemoryZoneImpl* impl_;
+    //@}
 };
 
 /// \brief A data source that uses in memory dedicated backend.