Files
libreoffice/sw/inc/init.hxx
Thomas Arnhold 2df39f400d sw: clean up inter-module includes
Change-Id: I812842e76ae0b7bc252530d2b4aaa2b452c2babf
2014-04-15 21:22:04 +02:00

63 lines
1.6 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SW_INC_INIT_HXX
#define INCLUDED_SW_INC_INIT_HXX
#include <sal/config.h>
#include <boost/noncopyable.hpp>
#include <osl/module.h>
#include <osl/module.hxx>
class SwViewShell;
void _InitCore(); // bastyp/init.cxx
void _FinitCore();
namespace sw {
// basflt/fltini.cxx
class Filters: private boost::noncopyable {
public:
Filters();
~Filters();
#ifndef DISABLE_DYNLOADING
oslGenericFunction GetMswordLibSymbol( const char *pSymbol );
#endif
private:
osl::Module msword_;
};
}
// layout/newfrm.cxx
void _FrmInit();
void _FrmFinit();
void SetShell( SwViewShell *pSh );
// text/txtfrm.cxx
void _TextInit();
void _TextFinit();
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */