xref: /aoo41x/main/svl/source/items/stritem.cxx (revision 40df464e)
1*40df464eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*40df464eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*40df464eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*40df464eSAndrew Rist  * distributed with this work for additional information
6*40df464eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*40df464eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*40df464eSAndrew Rist  * "License"); you may not use this file except in compliance
9*40df464eSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*40df464eSAndrew Rist  *
11*40df464eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*40df464eSAndrew Rist  *
13*40df464eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*40df464eSAndrew Rist  * software distributed under the License is distributed on an
15*40df464eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*40df464eSAndrew Rist  * KIND, either express or implied.  See the License for the
17*40df464eSAndrew Rist  * specific language governing permissions and limitations
18*40df464eSAndrew Rist  * under the License.
19*40df464eSAndrew Rist  *
20*40df464eSAndrew Rist  *************************************************************/
21*40df464eSAndrew Rist 
22*40df464eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svl.hxx"
26cdf0e10cSrcweir #include <svl/stritem.hxx>
27cdf0e10cSrcweir 
28cdf0e10cSrcweir //============================================================================
29cdf0e10cSrcweir //
30cdf0e10cSrcweir //  class SfxStringItem
31cdf0e10cSrcweir //
32cdf0e10cSrcweir //============================================================================
33cdf0e10cSrcweir 
TYPEINIT1_AUTOFACTORY(SfxStringItem,CntUnencodedStringItem)34cdf0e10cSrcweir TYPEINIT1_AUTOFACTORY(SfxStringItem, CntUnencodedStringItem)
35cdf0e10cSrcweir 
36cdf0e10cSrcweir //============================================================================
37cdf0e10cSrcweir // virtual
38cdf0e10cSrcweir SfxStringItem::SfxStringItem(sal_uInt16 which, SvStream & rStream):
39cdf0e10cSrcweir 	CntUnencodedStringItem(which)
40cdf0e10cSrcweir {
41cdf0e10cSrcweir 	UniString aValue;
42cdf0e10cSrcweir 	readByteString(rStream, aValue);
43cdf0e10cSrcweir 	SetValue(aValue);
44cdf0e10cSrcweir }
45cdf0e10cSrcweir 
46cdf0e10cSrcweir 
47cdf0e10cSrcweir //============================================================================
48cdf0e10cSrcweir // virtual
Create(SvStream & rStream,sal_uInt16) const49cdf0e10cSrcweir SfxPoolItem * SfxStringItem::Create(SvStream & rStream, sal_uInt16) const
50cdf0e10cSrcweir {
51cdf0e10cSrcweir 	return new SfxStringItem(Which(), rStream);
52cdf0e10cSrcweir }
53cdf0e10cSrcweir 
54cdf0e10cSrcweir //============================================================================
55cdf0e10cSrcweir // virtual
Store(SvStream & rStream,sal_uInt16) const56cdf0e10cSrcweir SvStream & SfxStringItem::Store(SvStream & rStream, sal_uInt16) const
57cdf0e10cSrcweir {
58cdf0e10cSrcweir 	writeByteString(rStream, GetValue());
59cdf0e10cSrcweir 	return rStream;
60cdf0e10cSrcweir }
61cdf0e10cSrcweir 
62cdf0e10cSrcweir //============================================================================
63cdf0e10cSrcweir // virtual
Clone(SfxItemPool *) const64cdf0e10cSrcweir SfxPoolItem * SfxStringItem::Clone(SfxItemPool *) const
65cdf0e10cSrcweir {
66cdf0e10cSrcweir 	return new SfxStringItem(*this);
67cdf0e10cSrcweir }
68cdf0e10cSrcweir 
69