diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2012-11-05 22:41:51 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-05 22:41:51 +0000 |
| commit | ec05778d5718a7912e506764d443a78d6a6179e3 (patch) | |
| tree | 78a9a01532180030c095acefc45763f07c14edb8 /src/unstable/newline.h | |
| parent | b20414ac1fe80a71a90601f4cd1767fa7014a9ba (diff) | |
| download | libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.gz libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.bz2 libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.xz libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.zip | |
Converted tabs to spaces with tabconv.
Diffstat (limited to '')
| -rw-r--r-- | src/unstable/newline.h | 42 |
1 files changed, 21 insertions, 21 deletions
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 @@ | |||
| 12 | 12 | ||
| 13 | namespace Bu | 13 | namespace Bu |
| 14 | { | 14 | { |
| 15 | /** | 15 | /** |
| 16 | * Converts new-line characters from any standard convention into linefeeds | 16 | * Converts new-line characters from any standard convention into linefeeds |
| 17 | * (\\n) on reading, and converts them to either your OS's standard or a | 17 | * (\\n) on reading, and converts them to either your OS's standard or a |
| 18 | * specified standard, depending on how you construct the class. | 18 | * specified standard, depending on how you construct the class. |
| 19 | * | 19 | * |
| 20 | * If you're reading in a text file, then this filter is practically | 20 | * If you're reading in a text file, then this filter is practically |
| 21 | * required. | 21 | * required. |
| 22 | */ | 22 | */ |
| 23 | class NewLine : public Bu::Filter | 23 | class NewLine : public Bu::Filter |
| 24 | { | 24 | { |
| 25 | public: | 25 | public: |
| 26 | NewLine( Bu::Stream &rNext ); | 26 | NewLine( Bu::Stream &rNext ); |
| 27 | virtual ~NewLine(); | 27 | virtual ~NewLine(); |
| 28 | 28 | ||
| 29 | virtual void start(); | 29 | virtual void start(); |
| 30 | virtual Bu::size stop(); | 30 | virtual Bu::size stop(); |
| 31 | 31 | ||
| 32 | virtual Bu::size read( void *pBuf, Bu::size iAmnt ); | 32 | virtual Bu::size read( void *pBuf, Bu::size iAmnt ); |
| 33 | virtual Bu::size write( const void *pBuf, Bu::size iAmnt ); | 33 | virtual Bu::size write( const void *pBuf, Bu::size iAmnt ); |
| 34 | 34 | ||
| 35 | private: | 35 | private: |
| 36 | bool bExChar; | 36 | bool bExChar; |
| 37 | char cExChar; | 37 | char cExChar; |
| 38 | }; | 38 | }; |
| 39 | }; | 39 | }; |
| 40 | 40 | ||
| 41 | #endif | 41 | #endif |
