89628f1df9
X-SVN-Rev: 10722
15 lines
408 B
C++
15 lines
408 B
C++
/******************************************************************************
|
|
* 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;
|
|
};
|