Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
TextReader.h
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#ifndef _Stroika_Foundation_Streams_TextReader_h_
5#define _Stroika_Foundation_Streams_TextReader_h_ 1
6
7#include "Stroika/Foundation/StroikaPreComp.h"
8
10
11/**
12 * FILE DEPRECATED - USE Streams/BinaryToText.h
13 */
14_DeprecatedFile_ ("DEPRECATED - TextReader.h - since v3.0d15 - use Streams::BinaryToText::Reader");
15
16namespace Stroika::Foundation::Streams::TextReader {
17
18 using namespace Streams::BinaryToText;
19 using namespace Streams::BinaryToText::Reader;
20
21 using Ptr = InputStream::Ptr<Character>;
22
23}
24
25/*
26 ********************************************************************************
27 ***************************** Implementation Details ***************************
28 ********************************************************************************
29 */
30
31#endif /*_Stroika_Foundation_Streams_TextReader_h_*/
InputStream::Ptr< Character > Ptr
BinaryToText::Readers produce text in the form of an InputStream of 'Character' objects (so you might...