/**********************************************************************************************
* Copyright (c) 2001-2025 Liquid Technologies Limited. All rights reserved.
* See www.liquid-technologies.com for product details.
*
* Please see products End User License Agreement for distribution permissions.
*
* WARNING: THIS FILE IS GENERATED
* Changes made outside of ##HAND_CODED_BLOCK_START blocks will be overwritten
*
* Generation : by Liquid XML Data Binder 19.0.14.11049
* Using Schema: DerivedByExtension.xsd
**********************************************************************************************/
#include "StdAfx.h"
#pragma warning (push)
#pragma warning (disable:4251) // template export warning
#pragma warning (disable:4786) // long debug names
#include "../DerivedByExtensionLib.h"
#include "../DerivedByExtensionLib/Address.h"
// ##HAND_CODED_BLOCK_START ID="Additional Includes"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
// Add Additional Includes here...
// ##HAND_CODED_BLOCK_END ID="Additional Includes"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
// Name : Address
// Long Name : Address
// Element Name : Address
// Class Namespace : DerivedByExtensionLib
// Namespace Alias :
// Schema Namespace :
// Mapped Class Name : CAddress
// Mapped Class Full Name : DerivedByExtensionLib::CAddress
// Mapped Class File Name : CAddress
// IsAbstract : False
// IsElement : True
// IsComplexType : True
namespace DerivedByExtensionLib
{
LtXmlLib21Data::CParentElementInfo* CAddress::ms_pParentElementInfo = NULL;
LtXmlLib21Data::CAttributeInfo** CAddress::ms_ppAttributeInfo = NULL;
LtXmlLib21Data::CElementInfo** CAddress::ms_ppElementInfo = NULL;
CAddressPtr CAddress::CreateInstance(LPCTSTR lpctElementName/*=_T("Address")*/)
{
return new DerivedByExtensionLib::CAddress(lpctElementName);
}
/*
* Constructor for CAddress
*
* The class is created with all the mandatory fields populated with the
* default data.
* All Collection objects are created.
* However any 1-n relationships (these are represented as collections) are
* empty. To comply with the schema these must be populated before the xml
* obtained from ToXml is valid against the schema DerivedByExtension.xsd
*/
CAddress::CAddress(LPCTSTR lpctElementName/*=_T("Address")*/)
: CInstanceMonitor(_T("CAddress"))
{
m_elementName = lpctElementName;
Init();
}
CAddress::~CAddress()
{
Cleanup();
}
void CAddress::Cleanup()
{
// unregister for any events we have asked for
// cos there'll be no one left to hear soon
}
void CAddress::OnEvent(LtXmlLib21::CXmlObjectBase* pMsgSource, LtXmlLib21::IEventSink::MsgType eMsgType, void* pData)
{
if (eMsgType == LtXmlLib21::IEventSink::MT_CollectionChangeEvent)
{
}
}
/*
* Initializes the class
*
* The Creates all the mandatory fields (populated with the default data)
* All Collection object are created.
* However any 1-n relationships (these are represented as collections) are
* empty. To comply with the schema these must be populated before the xml
* obtained from ToXml is valid against the schema DerivedByExtension.xsd.
*/
void CAddress::Init()
{
Cleanup();
this->m_Name = _T("");
this->m_Street = _T("");
this->m_City = _T("");
// ##HAND_CODED_BLOCK_START ID="Additional Inits"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
// Add Additional Init Settings...
// ##HAND_CODED_BLOCK_END ID="Additional Inits"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
}
void CAddress::AccessProperty(int iPropertyIndex, bool bRead, LtXmlLib21::LtVariant& rValue)
{
if (bRead)
{
switch(iPropertyIndex)
{
case 1:
rValue.SetString(GetName());
break;
case 2:
rValue.SetString(GetStreet());
break;
case 3:
rValue.SetString(GetCity());
break;
default:
throw LtXmlLib21::CLtException(_T("Unknown Property Index"));
};
}
else
{
switch(iPropertyIndex)
{
case 1:
SetName(rValue.GetString());
break;
case 2:
SetStreet(rValue.GetString());
break;
case 3:
SetCity(rValue.GetString());
break;
default:
throw LtXmlLib21::CLtException(_T("Unknown Property Index"));
}
}
}
/*
* Represents a mandatory Element in the XML document
*
*
* This property is represented as an Element in the XML.
* It is mandatory and therefore must be populated within the XML.
* It is defaulted to _T("").
*/
std::tstring CAddress::GetName() const
{
return this->m_Name;
}
void CAddress::SetName(std::tstring value)
{
// Apply whitespace rules appropriately
value = LtXmlLib21::CWhitespaceUtils::Preserve(value);
this->m_Name = value;
}
/*
* Represents a mandatory Element in the XML document
*
*
* This property is represented as an Element in the XML.
* It is mandatory and therefore must be populated within the XML.
* It is defaulted to _T("").
*/
std::tstring CAddress::GetStreet() const
{
return this->m_Street;
}
void CAddress::SetStreet(std::tstring value)
{
// Apply whitespace rules appropriately
value = LtXmlLib21::CWhitespaceUtils::Preserve(value);
this->m_Street = value;
}
/*
* Represents a mandatory Element in the XML document
*
*
* This property is represented as an Element in the XML.
* It is mandatory and therefore must be populated within the XML.
* It is defaulted to _T("").
*/
std::tstring CAddress::GetCity() const
{
return this->m_City;
}
void CAddress::SetCity(std::tstring value)
{
// Apply whitespace rules appropriately
value = LtXmlLib21::CWhitespaceUtils::Preserve(value);
this->m_City = value;
}
/*
* Allows the class to be copied
* Performs a 'deep copy' of all the data in the class (and its children)
*/
DerivedByExtensionLib::IAddressPtr CAddress::Clone() const
{
DerivedByExtensionLib::CAddressPtr newObject = CreateInstance(m_elementName.c_str());
int index = 0;
newObject->m_Name = m_Name;
newObject->m_Street = m_Street;
newObject->m_City = m_City;
// ##HAND_CODED_BLOCK_START ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
// Add Additional clone code here...
// ##HAND_CODED_BLOCK_END ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
return newObject.Ptr();
}
std::tstring CAddress::GetTargetNamespace() const
{
return _T("");
}
std::tstring CAddress::GetNamespace() const
{
return _T("");
}
LtXmlLib21::CXmlObjectBase* CAddress::GetBase()
{
return this;
}
void CAddress::CleanMetaData()
{
LtXmlLib21::CXmlGeneratedClass::CleanMetaData(ms_pParentElementInfo, ms_ppElementInfo, ms_ppAttributeInfo);
}
LtXmlLib21Data::CParentElementInfo* CAddress::GetClassInfo() const
{
if (ms_pParentElementInfo == NULL)
{
m_csInit.Enter();
if (ms_pParentElementInfo == NULL)
{
ms_pParentElementInfo = new LtXmlLib21Data::CParentElementInfo(
LtXmlLib21Data::XmlElementGroupType_SEQUENCE,
LtXmlLib21Data::XmlElementType_ELEMENT,
_T("Address"),
_T(""),
true,
true,
-1,
LtXmlLib21::ItemType_none,
LtXmlLib21::CWhitespaceUtils::WhitespaceRule_None,
NULL,
false);
}
m_csInit.Leave();
}
return ms_pParentElementInfo;
}
LtXmlLib21Data::CElementInfo** CAddress::GetClassElementInfo() const
{
if (ms_ppElementInfo == NULL)
{
m_csInit.Enter();
if (ms_ppElementInfo == NULL)
{
ms_ppElementInfo = new LtXmlLib21Data::CElementInfo*[4];
ms_ppElementInfo[0] = new LtXmlLib21Data::CElementInfoSeqPrimMnd(_T("Name"), _T(""), 1, false, LtXmlLib21::ItemType_string, NULL, LtXmlLib21::CWhitespaceUtils::WhitespaceRule_Preserve, LtXmlLib21::CPrimitiveRestrictions(_T(""), -1, -1, _T(""), _T(""), _T(""), _T(""), -1, -1, -1), NULL);
ms_ppElementInfo[1] = new LtXmlLib21Data::CElementInfoSeqPrimMnd(_T("Street"), _T(""), 2, false, LtXmlLib21::ItemType_string, NULL, LtXmlLib21::CWhitespaceUtils::WhitespaceRule_Preserve, LtXmlLib21::CPrimitiveRestrictions(_T(""), -1, -1, _T(""), _T(""), _T(""), _T(""), -1, -1, -1), NULL);
ms_ppElementInfo[2] = new LtXmlLib21Data::CElementInfoSeqPrimMnd(_T("City"), _T(""), 3, false, LtXmlLib21::ItemType_string, NULL, LtXmlLib21::CWhitespaceUtils::WhitespaceRule_Preserve, LtXmlLib21::CPrimitiveRestrictions(_T(""), -1, -1, _T(""), _T(""), _T(""), _T(""), -1, -1, -1), NULL);
ms_ppElementInfo[3] = NULL;
}
m_csInit.Leave();
}
return ms_ppElementInfo;
}
LtXmlLib21Data::CAttributeInfo** CAddress::GetClassAttributeInfo() const
{
if (ms_ppAttributeInfo == NULL)
{
m_csInit.Enter();
if (ms_ppAttributeInfo == NULL)
{
ms_ppAttributeInfo = new LtXmlLib21Data::CAttributeInfo*[1];
ms_ppAttributeInfo[0] = NULL;
}
m_csInit.Leave();
}
return ms_ppAttributeInfo;
}
// ##HAND_CODED_BLOCK_START ID="Additional Methods"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
// Add Additional Methods here...
// ##HAND_CODED_BLOCK_END ID="Additional Methods"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS
}; // namespace