BIND 10 trac2207, updated. 03b8bddd309adeb39a99474aea530f05989b99ed [2207] Style: Lines between comments and definitions
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Oct 17 09:21:47 UTC 2012
The branch, trac2207 has been updated
via 03b8bddd309adeb39a99474aea530f05989b99ed (commit)
from 0d336b6f23ca4518b38f1e26e8b8b9998f426e5f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 03b8bddd309adeb39a99474aea530f05989b99ed
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Wed Oct 17 11:17:20 2012 +0200
[2207] Style: Lines between comments and definitions
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/memory/zone_writer.h | 6 ++++++
1 file changed, 6 insertions(+)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/memory/zone_writer.h b/src/lib/datasrc/memory/zone_writer.h
index 89d417f..d763fba 100644
--- a/src/lib/datasrc/memory/zone_writer.h
+++ b/src/lib/datasrc/memory/zone_writer.h
@@ -54,6 +54,7 @@ public:
/// later.
/// \throw isc::Unexpected if called second time.
virtual void load() = 0;
+
/// \brief Put the changes to effect.
///
/// This replaces the old version of zone with the one previously prepared
@@ -70,6 +71,7 @@ public:
/// \throw isc::Unexpected if called without previous load() or for the
/// second time or cleanup() was called already.
virtual void install() = 0;
+
/// \brief Clean up resources.
///
/// This releases all resources held by owned zone data. That means the
@@ -96,8 +98,10 @@ public:
/// \param rrclass The class of the zone.
ZoneWriterLocal(ZoneTableSegment* segment, const LoadAction& load_action,
const dns::Name& name, const dns::RRClass& rrclass);
+
/// \brief Destructor
~ZoneWriterLocal();
+
/// \brief Loads the data.
///
/// This prepares an empty ZoneData and calls load_action (passed to
@@ -108,6 +112,7 @@ public:
/// of the object.
/// \throw Whatever the load_action throws, it is propagated up.
virtual void load();
+
/// \brief Installs the zone.
///
/// This simply calls the install_action.
@@ -117,6 +122,7 @@ public:
/// cleanup() was already called.
/// \throw Whatever the install_action throws, it is propagated up.
virtual void install();
+
/// \brief Clean up memory.
///
/// Cleans up the memory used by load()ed zone if not yet installed, or
More information about the bind10-changes
mailing list