getName
string getName(void);
Return the namespace's name.
Result: Namespace's name..
getUri
string getUri(void);
Return the namespace's uri.
Result: Namespace's uri..
getNextSibling
StyxDomNamespace* getNextSibling(void);
Return a pointer to the next sibling of this node in the namespace list.
Result: A pointer to a StyxDomNamespace..
addSibling
void addSibling(StyxDomNamespace* ns);
Add an existing StyxDomNamespace as last sibling of this node.
Parameters
ns | A pointer to a previously created StyxDomNamespace. |
getRootNode
StyxDomNode* getRootNode(void);
Return a pointer to the node where is declared this namespace.
Result: A pointer to a StyxDomNode..
StyxDomNamespace
StyxDomNamespace(StyxDomNode* root, string name, string uri)
Constructor
|