xref: /trunk/main/xmloff/source/text/XMLTextTableContext.cxx (revision 25d67f320042549d9d2a4b16f4e1a689a558428b)
163bba73cSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
363bba73cSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
463bba73cSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
563bba73cSAndrew Rist  * distributed with this work for additional information
663bba73cSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
763bba73cSAndrew Rist  * to you under the Apache License, Version 2.0 (the
863bba73cSAndrew Rist  * "License"); you may not use this file except in compliance
963bba73cSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
1163bba73cSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
1363bba73cSAndrew Rist  * Unless required by applicable law or agreed to in writing,
1463bba73cSAndrew Rist  * software distributed under the License is distributed on an
1563bba73cSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1663bba73cSAndrew Rist  * KIND, either express or implied.  See the License for the
1763bba73cSAndrew Rist  * specific language governing permissions and limitations
1863bba73cSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
2063bba73cSAndrew Rist  *************************************************************/
2163bba73cSAndrew Rist 
22cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
23cdf0e10cSrcweir #include "precompiled_xmloff.hxx"
24cdf0e10cSrcweir #include <xmloff/XMLTextTableContext.hxx>
25cdf0e10cSrcweir 
26cdf0e10cSrcweir using ::rtl::OUString;
27cdf0e10cSrcweir 
28cdf0e10cSrcweir using namespace ::com::sun::star::uno;
29cdf0e10cSrcweir using namespace ::com::sun::star::text;
30cdf0e10cSrcweir 
31cdf0e10cSrcweir TYPEINIT1( XMLTextTableContext, SvXMLImportContext );
32cdf0e10cSrcweir 
XMLTextTableContext(SvXMLImport & rImport,sal_uInt16 nPrfx,const OUString & rLName)33cdf0e10cSrcweir XMLTextTableContext::XMLTextTableContext(
34cdf0e10cSrcweir         SvXMLImport& rImport,
35cdf0e10cSrcweir         sal_uInt16 nPrfx, const OUString& rLName ) :
36cdf0e10cSrcweir     SvXMLImportContext( rImport, nPrfx, rLName )
37cdf0e10cSrcweir {
38cdf0e10cSrcweir }
39cdf0e10cSrcweir 
~XMLTextTableContext()40cdf0e10cSrcweir XMLTextTableContext::~XMLTextTableContext()
41cdf0e10cSrcweir {
42cdf0e10cSrcweir }
43*25d67f32Smseidel 
44*25d67f32Smseidel /* vim: set noet sw=4 ts=4: */
45