-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathRecursiveXmlShapesOutputNested1.cpp
More file actions
91 lines (77 loc) · 2.44 KB
/
RecursiveXmlShapesOutputNested1.cpp
File metadata and controls
91 lines (77 loc) · 2.44 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/ec2-protocol/model/RecursiveXmlShapesOutputNested1.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <aws/ec2-protocol/model/RecursiveXmlShapesOutputNested2.h>
#include <utility>
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
namespace Aws
{
namespace EC2Protocol
{
namespace Model
{
RecursiveXmlShapesOutputNested1::RecursiveXmlShapesOutputNested1() :
m_fooHasBeenSet(false),
m_nestedHasBeenSet(false)
{
}
RecursiveXmlShapesOutputNested1::RecursiveXmlShapesOutputNested1(const XmlNode& xmlNode)
: RecursiveXmlShapesOutputNested1()
{
*this = xmlNode;
}
RecursiveXmlShapesOutputNested1& RecursiveXmlShapesOutputNested1::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode fooNode = resultNode.FirstChild("foo");
if(!fooNode.IsNull())
{
m_foo = Aws::Utils::Xml::DecodeEscapedXmlText(fooNode.GetText());
m_fooHasBeenSet = true;
}
XmlNode nestedNode = resultNode.FirstChild("nested");
if(!nestedNode.IsNull())
{
m_nested = Aws::MakeShared<RecursiveXmlShapesOutputNested2>("RecursiveXmlShapesOutputNested1", nestedNode);
m_nestedHasBeenSet = true;
}
}
return *this;
}
void RecursiveXmlShapesOutputNested1::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_fooHasBeenSet)
{
oStream << location << index << locationValue << ".foo=" << StringUtils::URLEncode(m_foo.c_str()) << "&";
}
if(m_nestedHasBeenSet)
{
Aws::StringStream nestedLocationAndMemberSs;
nestedLocationAndMemberSs << location << index << locationValue << ".nested";
m_nested.OutputToStream(oStream, nestedLocationAndMemberSs.str().c_str());
}
}
void RecursiveXmlShapesOutputNested1::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_fooHasBeenSet)
{
oStream << location << ".foo=" << StringUtils::URLEncode(m_foo.c_str()) << "&";
}
if(m_nestedHasBeenSet)
{
Aws::String nestedLocationAndMember(location);
nestedLocationAndMember += ".nested";
m_nested.OutputToStream(oStream, nestedLocationAndMember.c_str());
}
}
} // namespace Model
} // namespace EC2Protocol
} // namespace Aws