summaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-31 05:43:42 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-31 05:43:42 -0400
commit6b81bb80057ef1391fe7f6d1d2e134f8289331d0 (patch)
treede6bb33fc08bd70b6a131bc4e9ae7f32fe554683 /src/stream.h
parent5c19bb48e0d78727fa7b99abce5b7e01226b8d1d (diff)
downloadfork-ledger-6b81bb80057ef1391fe7f6d1d2e134f8289331d0.tar.gz
fork-ledger-6b81bb80057ef1391fe7f6d1d2e134f8289331d0.tar.bz2
fork-ledger-6b81bb80057ef1391fe7f6d1d2e134f8289331d0.zip
Moved a comment.
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/stream.h b/src/stream.h
index 0f5aecb0..fac62f3d 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -82,6 +82,13 @@ public:
}
/**
+ * Destroys an output_stream_t. This deletes the dynamically
+ * allocated ostream, if necessary. It also closes output file
+ * descriptor, if necessary.
+ */
+ ~output_stream_t();
+
+ /**
* Initialize the output stream object.
*
* @param output_file File to which to send output. If both this
@@ -94,13 +101,6 @@ public:
const optional<path>& pager_path = none);
/**
- * Destroys an output_stream_t. This deletes the dynamically
- * allocated ostream, if necessary. It also closes output file
- * descriptor, if necessary.
- */
- ~output_stream_t();
-
- /**
* Convertor to a standard ostream. This is used so that we can
* stream directly to an object of type output_stream_t.
*/