blob: ce67346c0c0b75a05d739d394600649dd9c5b1eb [file] [log] [blame]
/******************************************************************************
* 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;
};