xref: /AOO41X/main/svx/source/xoutdev/XPropertyEntry.cxx (revision ca62e2c2083b5d0995f1245bad6c2edfb455fbec)
1*97e8a929SArmin Le Grand /**************************************************************
2*97e8a929SArmin Le Grand  *
3*97e8a929SArmin Le Grand  * Licensed to the Apache Software Foundation (ASF) under one
4*97e8a929SArmin Le Grand  * or more contributor license agreements.  See the NOTICE file
5*97e8a929SArmin Le Grand  * distributed with this work for additional information
6*97e8a929SArmin Le Grand  * regarding copyright ownership.  The ASF licenses this file
7*97e8a929SArmin Le Grand  * to you under the Apache License, Version 2.0 (the
8*97e8a929SArmin Le Grand  * "License"); you may not use this file except in compliance
9*97e8a929SArmin Le Grand  * with the License.  You may obtain a copy of the License at
10*97e8a929SArmin Le Grand  *
11*97e8a929SArmin Le Grand  *   http://www.apache.org/licenses/LICENSE-2.0
12*97e8a929SArmin Le Grand  *
13*97e8a929SArmin Le Grand  * Unless required by applicable law or agreed to in writing,
14*97e8a929SArmin Le Grand  * software distributed under the License is distributed on an
15*97e8a929SArmin Le Grand  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*97e8a929SArmin Le Grand  * KIND, either express or implied.  See the License for the
17*97e8a929SArmin Le Grand  * specific language governing permissions and limitations
18*97e8a929SArmin Le Grand  * under the License.
19*97e8a929SArmin Le Grand  *
20*97e8a929SArmin Le Grand  *************************************************************/
21*97e8a929SArmin Le Grand 
22*97e8a929SArmin Le Grand // MARKER(update_precomp.py): autogen include statement, do not remove
23*97e8a929SArmin Le Grand #include "precompiled_svx.hxx"
24*97e8a929SArmin Le Grand 
25*97e8a929SArmin Le Grand #include <svx/XPropertyEntry.hxx>
26*97e8a929SArmin Le Grand // --------------------
27*97e8a929SArmin Le Grand 
XPropertyEntry(const String & rName)28*97e8a929SArmin Le Grand XPropertyEntry::XPropertyEntry(const String& rName)
29*97e8a929SArmin Le Grand :   maName(rName),
30*97e8a929SArmin Le Grand     maUiBitmap()
31*97e8a929SArmin Le Grand {
32*97e8a929SArmin Le Grand }
33*97e8a929SArmin Le Grand 
XPropertyEntry(const XPropertyEntry & rOther)34*97e8a929SArmin Le Grand XPropertyEntry::XPropertyEntry(const XPropertyEntry& rOther)
35*97e8a929SArmin Le Grand :   maName(rOther.maName),
36*97e8a929SArmin Le Grand     maUiBitmap(rOther.maUiBitmap)
37*97e8a929SArmin Le Grand {
38*97e8a929SArmin Le Grand }
39*97e8a929SArmin Le Grand 
~XPropertyEntry()40*97e8a929SArmin Le Grand XPropertyEntry::~XPropertyEntry()
41*97e8a929SArmin Le Grand {
42*97e8a929SArmin Le Grand }
43*97e8a929SArmin Le Grand 
44*97e8a929SArmin Le Grand // eof
45