Browse Source

[2432] Add some more API doc

Mukund Sivaraman 12 years ago
parent
commit
5d3af5f896
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/lib/dns/rrset_collection.h

+ 6 - 0
src/lib/dns/rrset_collection.h

@@ -109,10 +109,16 @@ public:
          const isc::dns::RRClass& rrclass)
         const;
 
+    /// \brief Find a matching RRset in the collection.
+    ///
+    /// See above for a description of the method and arguments.
     isc::dns::RRsetPtr find(const isc::dns::Name& name,
                             const isc::dns::RRClass& rrclass,
                             const isc::dns::RRType& rrtype);
 
+    /// \brief Find a matching RRset in the collection (const variant).
+    ///
+    /// See above for a description of the method and arguments.
     isc::dns::ConstRRsetPtr find(const isc::dns::Name& name,
                                  const isc::dns::RRClass& rrclass,
                                  const isc::dns::RRType& rrtype) const;