GM6000 Digital Heater Controller Branch: main
SDX-1330
LineReader.h
Go to the documentation of this file.
1#ifndef Cpl_Io_LineReader_h_
2#define Cpl_Io_LineReader_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Cpl/Io/Input.h"
17#include "Cpl/Io/NewLine.h"
18#include "Cpl/Text/FString.h"
19
20
21
22///
23namespace Cpl {
24///
25namespace Io {
26
27
28/** This concrete class implements a Line Reader stream using a previously
29 opened Input stream.
30 */
32{
33protected:
34 /// Data source
36
37 /// Newline
38 const char* m_newline;
39
40
41public:
42 /** Constructor.
43 */
44 LineReader( Input& stream, const char* newline=NewLine::standard() );
45
46
47public:
48 /// See LineReaderApi
49 bool readln( Cpl::Text::String& destString );
50
51 /// See LineReaderApi
52 bool available();
53
54 /// See LineReaderApi
55 void close();
56
57};
58
59}; // end namespaces
60};
61#endif // end header latch
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
This abstract class defines a interface for a stream line reader.
Definition LineReaderApi.h:32
This concrete class implements a Line Reader stream using a previously opened Input stream.
Definition LineReader.h:32
bool available()
See LineReaderApi.
const char * m_newline
Newline.
Definition LineReader.h:38
bool readln(Cpl::Text::String &destString)
See LineReaderApi.
LineReader(Input &stream, const char *newline=NewLine::standard())
Constructor.
void close()
See LineReaderApi.
Input & m_stream
Data source.
Definition LineReader.h:35
static const char * standard(void)
This method returns the Colony standardized newline character(s)
Definition NewLine.h:49
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20