bump product version to 4.1.6.2
[LibreOffice.git] / filter / source / svg / tokenmap.hxx
blobd6f7592363b890dbfd6bb616636c1767b415d752
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9 #ifndef INCLUDED_TOKENMAP_HXX
10 #define INCLUDED_TOKENMAP_HXX
12 #include "tokens.hxx"
14 #include <rtl/string.hxx>
15 #include <rtl/ustring.hxx>
17 namespace svgi
19 sal_Int32 getTokenId( const char* sIdent, sal_Int32 nLen );
20 sal_Int32 getTokenId( const OUString& sIdent );
21 const char* getTokenName( sal_Int32 nTokenId );
23 } // namespace svgi
25 #endif
27 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */