diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2012-03-25 20:00:08 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2012-03-25 20:00:08 +0000 |
| commit | 469bbcf0701e1eb8a6670c23145b0da87357e178 (patch) | |
| tree | b5b062a16e46a6c5d3410b4e574cd0cc09057211 /src/newline.h | |
| parent | ee1b79396076edc4e30aefb285fada03bb45e80d (diff) | |
| download | libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.tar.gz libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.tar.bz2 libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.tar.xz libbu++-469bbcf0701e1eb8a6670c23145b0da87357e178.zip | |
Code is all reorganized. We're about ready to release. I should write up a
little explenation of the arrangement.
Diffstat (limited to 'src/newline.h')
| -rw-r--r-- | src/newline.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/newline.h b/src/newline.h deleted file mode 100644 index afe0a84..0000000 --- a/src/newline.h +++ /dev/null | |||
| @@ -1,41 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | ||
| 3 | * | ||
| 4 | * This file is part of the libbu++ library and is released under the | ||
| 5 | * terms of the license contained in the file LICENSE. | ||
| 6 | */ | ||
| 7 | |||
| 8 | #ifndef BU_NEW_LINE_H | ||
| 9 | #define BU_NEW_LINE_H | ||
| 10 | |||
| 11 | #include "bu/filter.h" | ||
| 12 | |||
| 13 | namespace Bu | ||
| 14 | { | ||
| 15 | /** | ||
| 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 | ||
| 18 | * specified standard, depending on how you construct the class. | ||
| 19 | * | ||
| 20 | * If you're reading in a text file, then this filter is practically | ||
| 21 | * required. | ||
| 22 | */ | ||
| 23 | class NewLine : public Bu::Filter | ||
| 24 | { | ||
| 25 | public: | ||
| 26 | NewLine( Bu::Stream &rNext ); | ||
| 27 | virtual ~NewLine(); | ||
| 28 | |||
| 29 | virtual void start(); | ||
| 30 | virtual Bu::size stop(); | ||
| 31 | |||
| 32 | virtual Bu::size read( void *pBuf, Bu::size iAmnt ); | ||
| 33 | virtual Bu::size write( const void *pBuf, Bu::size iAmnt ); | ||
| 34 | |||
| 35 | private: | ||
| 36 | bool bExChar; | ||
| 37 | char cExChar; | ||
| 38 | }; | ||
| 39 | }; | ||
| 40 | |||
| 41 | #endif | ||
