scuffed-code/icu4c/source/samples/xml2txt/ChildName.cpp

15 lines
408 B
C++
Raw Normal View History

/******************************************************************************
* Copyright (C) 2002, International Business Machines Corporation and
* others. All Rights Reserved.
******************************************************************************/
#include "ChildName.h"
void ChildName ::SetName(DOMString name)
{
Name = name;
};
void ChildName::SetNext(ChildName* next)
{
Next = next;
};