diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-11 10:36:58 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-11 10:36:58 +0200 |
commit | dde119c8f2c40249eaea13a5acf218357f7df4b4 (patch) | |
tree | c34f1f2dda52d9221bd4e38da70016c225d37fbe /basic/inc | |
parent | cd7bce9e3701942438e420c9dde69f44eab5fa00 (diff) |
basic/global.hxx is private to basic
Change-Id: I90a28e34eb45819e240931cd751ac0a546ea6be8
Diffstat (limited to 'basic/inc')
-rw-r--r-- | basic/inc/global.hxx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/basic/inc/global.hxx b/basic/inc/global.hxx new file mode 100644 index 000000000000..640759ef8c17 --- /dev/null +++ b/basic/inc/global.hxx @@ -0,0 +1,25 @@ +/* -*- 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/. + */ + +#ifndef INCLUDED_BASIC_INC_GLOBAL_HXX +#define INCLUDED_BASIC_INC_GLOBAL_HXX + +namespace utl { + class TransliterationWrapper; +} + +class SbGlobal +{ +public: + static utl::TransliterationWrapper& GetTransliteration(); +}; + +#endif // INCLUDED_BASIC_INC_GLOBAL_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |