src/network/utils/output-stream-wrapper.h
changeset 7182 5ecfee5d17de
parent 6823 a27f86fb4e55
child 7353 09fccf6195ea
--- a/src/network/utils/output-stream-wrapper.h	Fri May 13 14:57:10 2011 -0400
+++ b/src/network/utils/output-stream-wrapper.h	Fri May 13 14:57:43 2011 -0400
@@ -41,7 +41,7 @@
  * When writing traced information to a file, the tempting ns-3 idiom is to 
  * create a bound callback with an ofstream as the bound object.  Unfortunately,
  * this implies a copy construction in order to get the ofstream object into the
- * callback.  This operation, as mentioned above, is forbidden by the STL.  
+ * callback.  This operation, as mentioned above, is forbidden by the STL.
  * Using this class in ns-3 APIs is generally preferable to passing global 
  * pointers to ostream objects, or passing a pointer to a stack allocated 
  * ostream (which creates object lifetime issues). 
@@ -82,7 +82,7 @@
    * \returns a pointer to the encapsulated std::ostream
    */
   std::ostream *GetStream (void);
-  
+
 private:
   std::ostream *m_ostream;
   bool m_destroyable;