1*f580d42cSArmin Le Grand /**************************************************************
2*f580d42cSArmin Le Grand  *
3*f580d42cSArmin Le Grand  * Licensed to the Apache Software Foundation (ASF) under one
4*f580d42cSArmin Le Grand  * or more contributor license agreements.  See the NOTICE file
5*f580d42cSArmin Le Grand  * distributed with this work for additional information
6*f580d42cSArmin Le Grand  * regarding copyright ownership.  The ASF licenses this file
7*f580d42cSArmin Le Grand  * to you under the Apache License, Version 2.0 (the
8*f580d42cSArmin Le Grand  * "License"); you may not use this file except in compliance
9*f580d42cSArmin Le Grand  * with the License.  You may obtain a copy of the License at
10*f580d42cSArmin Le Grand  *
11*f580d42cSArmin Le Grand  *   http://www.apache.org/licenses/LICENSE-2.0
12*f580d42cSArmin Le Grand  *
13*f580d42cSArmin Le Grand  * Unless required by applicable law or agreed to in writing,
14*f580d42cSArmin Le Grand  * software distributed under the License is distributed on an
15*f580d42cSArmin Le Grand  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*f580d42cSArmin Le Grand  * KIND, either express or implied.  See the License for the
17*f580d42cSArmin Le Grand  * specific language governing permissions and limitations
18*f580d42cSArmin Le Grand  * under the License.
19*f580d42cSArmin Le Grand  *
20*f580d42cSArmin Le Grand  *************************************************************/
21*f580d42cSArmin Le Grand 
22*f580d42cSArmin Le Grand // MARKER(update_precomp.py): autogen include statement, do not remove
23*f580d42cSArmin Le Grand #include "precompiled_svgio.hxx"
24*f580d42cSArmin Le Grand 
25*f580d42cSArmin Le Grand #include <svgio/svgreader/svgtitledescnode.hxx>
26*f580d42cSArmin Le Grand 
27*f580d42cSArmin Le Grand //////////////////////////////////////////////////////////////////////////////
28*f580d42cSArmin Le Grand 
29*f580d42cSArmin Le Grand namespace svgio
30*f580d42cSArmin Le Grand {
31*f580d42cSArmin Le Grand     namespace svgreader
32*f580d42cSArmin Le Grand     {
33*f580d42cSArmin Le Grand         SvgTitleDescNode::SvgTitleDescNode(
34*f580d42cSArmin Le Grand             SVGToken aType,
35*f580d42cSArmin Le Grand             SvgDocument& rDocument,
36*f580d42cSArmin Le Grand             SvgNode* pParent)
37*f580d42cSArmin Le Grand         :   SvgNode(aType, rDocument, pParent),
38*f580d42cSArmin Le Grand             maText()
39*f580d42cSArmin Le Grand         {
40*f580d42cSArmin Le Grand         }
41*f580d42cSArmin Le Grand 
42*f580d42cSArmin Le Grand         SvgTitleDescNode::~SvgTitleDescNode()
43*f580d42cSArmin Le Grand         {
44*f580d42cSArmin Le Grand         }
45*f580d42cSArmin Le Grand 
46*f580d42cSArmin Le Grand         void SvgTitleDescNode::concatenate(const rtl::OUString& rChars)
47*f580d42cSArmin Le Grand         {
48*f580d42cSArmin Le Grand             maText += rChars;
49*f580d42cSArmin Le Grand         }
50*f580d42cSArmin Le Grand     } // end of namespace svgreader
51*f580d42cSArmin Le Grand } // end of namespace svgio
52*f580d42cSArmin Le Grand 
53*f580d42cSArmin Le Grand //////////////////////////////////////////////////////////////////////////////
54*f580d42cSArmin Le Grand // eof
55