Stroika Library 3.0d20
 
Loading...
Searching...
No Matches
IConsumer.cpp
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#include "Stroika/Foundation/StroikaPreComp.h"
5
6#include "IConsumer.h"
7
9using namespace Stroika::Foundation::DataExchange::StructuredStreamEvents;
10
11/*
12 ********************************************************************************
13 ***************************** DataExchange::IConsumer **************************
14 ********************************************************************************
15 */
19
21{
22}
23
24void IConsumer::StartElement ([[maybe_unused]] const Name& name, [[maybe_unused]] const Mapping<Name, String>& attributes)
25{
26}
27
28void IConsumer::EndElement ([[maybe_unused]] const Name& name)
29{
30}
31
32void IConsumer::TextInsideElement ([[maybe_unused]] const String& text)
33{
34}
String is like std::u32string, except it is much easier to use, often much more space efficient,...
Definition String.h:201
virtual void StartElement(const Name &name, const Mapping< Name, String > &attributes)
Definition IConsumer.cpp:24