Bump version to 6.4-15
[LibreOffice.git] / unoxml / source / dom / notationsmap.cxx
blob770923c79d55d56e7f0797d505ba5e60f3f8c23d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "notationsmap.hxx"
22 #include <osl/diagnose.h>
24 #include "documenttype.hxx"
26 using namespace css::uno;
27 using namespace css::xml::dom;
29 namespace DOM
31 CNotationsMap::CNotationsMap()
35 /**
36 The number of nodes in this map.
38 sal_Int32 SAL_CALL CNotationsMap::getLength()
40 OSL_ENSURE(false,
41 "CNotationsMap::getLength: not implemented (#i113683#)");
42 return 0;
45 /**
46 Retrieves a node specified by local name
48 Reference< XNode > SAL_CALL
49 CNotationsMap::getNamedItem(OUString const& /*name*/)
51 OSL_ENSURE(false,
52 "CNotationsMap::getNamedItem: not implemented (#i113683#)");
53 return Reference< XNode >();
56 /**
57 Retrieves a node specified by local name and namespace URI.
59 Reference< XNode > SAL_CALL
60 CNotationsMap::getNamedItemNS(
61 OUString const& /*namespaceURI*/, OUString const& /*localName*/)
63 OSL_ENSURE(false,
64 "CNotationsMap::getNamedItemNS: not implemented (#i113683#)");
65 return Reference< XNode >();
68 /**
69 Returns the indexth item in the map.
71 Reference< XNode > SAL_CALL
72 CNotationsMap::item(sal_Int32 /*index*/)
74 OSL_ENSURE(false, "CNotationsMap::item: not implemented (#i113683#)");
75 return Reference< XNode >();
78 /**
79 Removes a node specified by name.
81 Reference< XNode > SAL_CALL
82 CNotationsMap::removeNamedItem(OUString const& /*name*/)
84 OSL_ENSURE(false,
85 "CNotationsMap::removeNamedItem: not implemented (#i113683#)");
86 return Reference< XNode >();
89 /**
90 // Removes a node specified by local name and namespace URI.
92 Reference< XNode > SAL_CALL
93 CNotationsMap::removeNamedItemNS(
94 OUString const& /*namespaceURI*/, OUString const& /*localName*/)
96 OSL_ENSURE(false,
97 "CNotationsMap::removeNamedItemNS: not implemented (#i113683#)");
98 return Reference< XNode >();
102 // Adds a node using its nodeName attribute.
104 Reference< XNode > SAL_CALL
105 CNotationsMap::setNamedItem(Reference< XNode > const& /*arg*/)
107 OSL_ENSURE(false,
108 "CNotationsMap::setNamedItem: not implemented (#i113683#)");
109 return Reference< XNode >();
113 Adds a node using its namespaceURI and localName.
115 Reference< XNode > SAL_CALL
116 CNotationsMap::setNamedItemNS(Reference< XNode > const& /*arg*/)
118 OSL_ENSURE(false,
119 "CNotationsMap::setNamedItemNS: not implemented (#i113683#)");
120 return Reference< XNode >();
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */