From ec05778d5718a7912e506764d443a78d6a6179e3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 5 Nov 2012 22:41:51 +0000 Subject: Converted tabs to spaces with tabconv. --- src/unstable/newline.h | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'src/unstable/newline.h') diff --git a/src/unstable/newline.h b/src/unstable/newline.h index 417f8cc..1597dc6 100644 --- a/src/unstable/newline.h +++ b/src/unstable/newline.h @@ -12,30 +12,30 @@ namespace Bu { - /** - * Converts new-line characters from any standard convention into linefeeds - * (\\n) on reading, and converts them to either your OS's standard or a - * specified standard, depending on how you construct the class. - * - * If you're reading in a text file, then this filter is practically - * required. - */ - class NewLine : public Bu::Filter - { - public: - NewLine( Bu::Stream &rNext ); - virtual ~NewLine(); + /** + * Converts new-line characters from any standard convention into linefeeds + * (\\n) on reading, and converts them to either your OS's standard or a + * specified standard, depending on how you construct the class. + * + * If you're reading in a text file, then this filter is practically + * required. + */ + class NewLine : public Bu::Filter + { + public: + NewLine( Bu::Stream &rNext ); + virtual ~NewLine(); - virtual void start(); - virtual Bu::size stop(); + virtual void start(); + virtual Bu::size stop(); - virtual Bu::size read( void *pBuf, Bu::size iAmnt ); - virtual Bu::size write( const void *pBuf, Bu::size iAmnt ); + virtual Bu::size read( void *pBuf, Bu::size iAmnt ); + virtual Bu::size write( const void *pBuf, Bu::size iAmnt ); - private: - bool bExChar; - char cExChar; - }; + private: + bool bExChar; + char cExChar; + }; }; #endif -- cgit v1.2.3