]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2207] Style: Lines between comments and definitions
authorMichal 'vorner' Vaner <michal.vaner@nic.cz>
Wed, 17 Oct 2012 09:17:20 +0000 (11:17 +0200)
committerMichal 'vorner' Vaner <michal.vaner@nic.cz>
Wed, 17 Oct 2012 09:17:20 +0000 (11:17 +0200)
src/lib/datasrc/memory/zone_writer.h

index 89d417f37a6007715dee23b33b945e513d9e15b1..d763fba11a957775bcd9650229317e5674600e30 100644 (file)
@@ -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