blob: eba07894f70ea475e968eb57f42a98dbf946ff6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2012 - Scilab Enterprises - Calixte DENIZET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*
*/
#include "XMLObject.hxx"
#include "XMLElement.hxx"
#include "XMLNs.hxx"
#include "VariableScope.hxx"
namespace org_modules_xml
{
XMLNs::XMLNs(const XMLObject & _parent, xmlNs * _ns):XMLObject(), parent(_parent)
{
ns = _ns;
scope->registerPointers(ns, this);
scilabType = XMLNAMESPACE;
id = scope->getVariableId(*this);
}
XMLNs::XMLNs(const XMLElement & elem, char *prefix, char *href):XMLObject(), parent(elem)
{
ns = xmlNewNs(elem.getRealNode(), (const xmlChar *)href, (const xmlChar *)prefix);
scope->registerPointers(ns, this);
scilabType = XMLNAMESPACE;
id = scope->getVariableId(*this);
}
XMLNs::~XMLNs()
{
scope->unregisterPointer(ns);
scope->removeId(id);
}
void *XMLNs::getRealXMLPointer() const
{
return static_cast < void *>(ns);
}
const XMLObject *XMLNs::getXMLObjectParent() const
{
return &parent;
}
const std::string XMLNs::toString() const
{
std::ostringstream oss;
oss << "XML Namespace" << std::endl;
oss << "href: " << getHref() << std::endl;
oss << "prefix: " << getPrefix();
return oss.str();
}
}
|