Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
Variant/INI/Reader.inl
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4
5namespace Stroika::Foundation::DataExchange::Variant::INI {
6
7 /*
8 ********************************************************************************
9 ********************************** INI::Reader *********************************
10 ********************************************************************************
11 */
13 {
14 return Convert (Read (in));
15 }
17 {
18 return Convert (Read (in));
19 }
21 {
22 return Convert (Read (in));
23 }
24 inline Profile Reader::ReadProfile (istream& in)
25 {
26 return Convert (Read (in));
27 }
28 inline Profile Reader::ReadProfile (wistream& in)
29 {
30 return Convert (Read (in));
31 }
32
33}
Profile Convert(const VariantValue &v)
Definition Profile.cpp:50
nonvirtual Profile ReadProfile(const Streams::InputStream::Ptr< byte > &in)
though can read directly as VariantValue, reading as a Profile object maybe handier for this type of ...
InputStream<>::Ptr is Smart pointer (with abstract Rep) class defining the interface to reading from ...
Iterable<T> is a base class for containers which easily produce an Iterator<T> to traverse them.
Definition Iterable.h:237