xref: /aoo41x/main/editeng/source/uno/unoedsrc.cxx (revision 190118d0)
1*190118d0SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*190118d0SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*190118d0SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*190118d0SAndrew Rist  * distributed with this work for additional information
6*190118d0SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*190118d0SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*190118d0SAndrew Rist  * "License"); you may not use this file except in compliance
9*190118d0SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*190118d0SAndrew Rist  *
11*190118d0SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*190118d0SAndrew Rist  *
13*190118d0SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*190118d0SAndrew Rist  * software distributed under the License is distributed on an
15*190118d0SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*190118d0SAndrew Rist  * KIND, either express or implied.  See the License for the
17*190118d0SAndrew Rist  * specific language governing permissions and limitations
18*190118d0SAndrew Rist  * under the License.
19*190118d0SAndrew Rist  *
20*190118d0SAndrew Rist  *************************************************************/
21*190118d0SAndrew Rist 
22*190118d0SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_editeng.hxx"
26cdf0e10cSrcweir #include <svl/brdcst.hxx>
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #include <editeng/unoedsrc.hxx>
29cdf0e10cSrcweir 
30cdf0e10cSrcweir 
31cdf0e10cSrcweir //------------------------------------------------------------------------
32cdf0e10cSrcweir 
addRange(SvxUnoTextRangeBase *)33cdf0e10cSrcweir void SvxEditSource::addRange( SvxUnoTextRangeBase* )
34cdf0e10cSrcweir {
35cdf0e10cSrcweir }
36cdf0e10cSrcweir 
37cdf0e10cSrcweir //------------------------------------------------------------------------
38cdf0e10cSrcweir 
removeRange(SvxUnoTextRangeBase *)39cdf0e10cSrcweir void SvxEditSource::removeRange( SvxUnoTextRangeBase* )
40cdf0e10cSrcweir {
41cdf0e10cSrcweir }
42cdf0e10cSrcweir 
43cdf0e10cSrcweir //------------------------------------------------------------------------
44cdf0e10cSrcweir 
getRanges() const45cdf0e10cSrcweir const SvxUnoTextRangeBaseList& SvxEditSource::getRanges() const
46cdf0e10cSrcweir {
47cdf0e10cSrcweir 	static SvxUnoTextRangeBaseList gList;
48cdf0e10cSrcweir 	return gList;
49cdf0e10cSrcweir }
50cdf0e10cSrcweir 
51cdf0e10cSrcweir //------------------------------------------------------------------------
52cdf0e10cSrcweir 
~SvxTextForwarder()53cdf0e10cSrcweir SvxTextForwarder::~SvxTextForwarder()
54cdf0e10cSrcweir {
55cdf0e10cSrcweir }
56cdf0e10cSrcweir 
57cdf0e10cSrcweir //------------------------------------------------------------------------
58cdf0e10cSrcweir 
~SvxViewForwarder()59cdf0e10cSrcweir SvxViewForwarder::~SvxViewForwarder()
60cdf0e10cSrcweir {
61cdf0e10cSrcweir }
62cdf0e10cSrcweir 
63cdf0e10cSrcweir //------------------------------------------------------------------------
64cdf0e10cSrcweir 
~SvxEditSource()65cdf0e10cSrcweir SvxEditSource::~SvxEditSource()
66cdf0e10cSrcweir {
67cdf0e10cSrcweir }
68cdf0e10cSrcweir 
GetViewForwarder()69cdf0e10cSrcweir SvxViewForwarder* SvxEditSource::GetViewForwarder()
70cdf0e10cSrcweir {
71cdf0e10cSrcweir     return NULL;
72cdf0e10cSrcweir }
73cdf0e10cSrcweir 
GetEditViewForwarder(sal_Bool)74cdf0e10cSrcweir SvxEditViewForwarder* SvxEditSource::GetEditViewForwarder( sal_Bool )
75cdf0e10cSrcweir {
76cdf0e10cSrcweir     return NULL;
77cdf0e10cSrcweir }
78cdf0e10cSrcweir 
GetBroadcaster() const79cdf0e10cSrcweir SfxBroadcaster&	SvxEditSource::GetBroadcaster() const
80cdf0e10cSrcweir {
81cdf0e10cSrcweir     DBG_ERROR("SvxEditSource::GetBroadcaster called for implementation missing this feature!");
82cdf0e10cSrcweir 
83cdf0e10cSrcweir     static SfxBroadcaster aBroadcaster;
84cdf0e10cSrcweir 
85cdf0e10cSrcweir     return aBroadcaster;
86cdf0e10cSrcweir }
87