diff options
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 |