2002-12-18 08:31:34 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2002, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
******************************************************************************/
|
2002-12-14 01:24:53 +00:00
|
|
|
#include "ChildName.h"
|
|
|
|
|
|
|
|
void ChildName ::SetName(DOMString name)
|
|
|
|
{
|
|
|
|
Name = name;
|
|
|
|
};
|
|
|
|
void ChildName::SetNext(ChildName* next)
|
|
|
|
{
|
|
|
|
Next = next;
|
2002-12-18 08:31:34 +00:00
|
|
|
};
|