-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathRecursiveXmlShapesOutputNested2.cpp
More file actions
91 lines (77 loc) · 2.61 KB
/
RecursiveXmlShapesOutputNested2.cpp
File metadata and controls
91 lines (77 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/query-protocol/model/RecursiveXmlShapesOutputNested2.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <aws/query-protocol/model/RecursiveXmlShapesOutputNested1.h>
#include <utility>
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
namespace Aws
{
namespace QueryProtocol
{
namespace Model
{
RecursiveXmlShapesOutputNested2::RecursiveXmlShapesOutputNested2() :
m_barHasBeenSet(false),
m_recursiveMemberHasBeenSet(false)
{
}
RecursiveXmlShapesOutputNested2::RecursiveXmlShapesOutputNested2(const XmlNode& xmlNode)
: RecursiveXmlShapesOutputNested2()
{
*this = xmlNode;
}
RecursiveXmlShapesOutputNested2& RecursiveXmlShapesOutputNested2::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode barNode = resultNode.FirstChild("bar");
if(!barNode.IsNull())
{
m_bar = Aws::Utils::Xml::DecodeEscapedXmlText(barNode.GetText());
m_barHasBeenSet = true;
}
XmlNode recursiveMemberNode = resultNode.FirstChild("recursiveMember");
if(!recursiveMemberNode.IsNull())
{
m_recursiveMember = Aws::MakeShared<RecursiveXmlShapesOutputNested1>("RecursiveXmlShapesOutputNested2", recursiveMemberNode);
m_recursiveMemberHasBeenSet = true;
}
}
return *this;
}
void RecursiveXmlShapesOutputNested2::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_barHasBeenSet)
{
oStream << location << index << locationValue << ".bar=" << StringUtils::URLEncode(m_bar.c_str()) << "&";
}
if(m_recursiveMemberHasBeenSet)
{
Aws::StringStream recursiveMemberLocationAndMemberSs;
recursiveMemberLocationAndMemberSs << location << index << locationValue << ".recursiveMember";
m_recursiveMember.OutputToStream(oStream, recursiveMemberLocationAndMemberSs.str().c_str());
}
}
void RecursiveXmlShapesOutputNested2::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_barHasBeenSet)
{
oStream << location << ".bar=" << StringUtils::URLEncode(m_bar.c_str()) << "&";
}
if(m_recursiveMemberHasBeenSet)
{
Aws::String recursiveMemberLocationAndMember(location);
recursiveMemberLocationAndMember += ".recursiveMember";
m_recursiveMember.OutputToStream(oStream, recursiveMemberLocationAndMember.c_str());
}
}
} // namespace Model
} // namespace QueryProtocol
} // namespace Aws