/****************************************************************************** * Copyright (C) 2002, International Business Machines Corporation and * others. All Rights Reserved. ******************************************************************************/ #ifndef CHILDNAME_H_ #define CHILDNAME_H_ #include #include #include #include #include #include #include #include #include "DOMTreeErrorReporter.hpp" class ChildName { public: DOMString Name; ChildName* Next; ChildName(){}; void SetName(DOMString name); void SetNext(ChildName* next); }; #endif