update credits
[LibreOffice.git] / writerfilter / inc / resourcemodel / QNameToString.hxx
blobdab7776746b05db6880bf1d494f3a8e54a688204
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_QNAME_TO_STRING_HXX
20 #define INCLUDED_QNAME_TO_STRING_HXX
22 #include <WriterFilterDllApi.hxx>
23 #include <boost/shared_ptr.hpp>
24 #include <map>
25 #include <string>
26 #include <iostream>
27 #include <resourcemodel/WW8ResourceModel.hxx>
28 #include <com/sun/star/beans/XPropertySet.hpp>
30 namespace writerfilter
32 using namespace ::std;
34 class WRITERFILTER_RESOURCEMODEL_DLLPUBLIC QNameToString
36 typedef boost::shared_ptr<QNameToString> Pointer_t;
37 typedef map < Id, string > Map;
39 static Pointer_t pInstance;
41 void init_doctok();
42 void init_ooxml();
44 Map mMap;
46 protected:
47 /**
48 Generated.
50 QNameToString();
52 public:
53 static Pointer_t Instance();
55 string operator()(Id qName);
58 class WRITERFILTER_RESOURCEMODEL_DLLPUBLIC SprmIdToString
60 typedef boost::shared_ptr<SprmIdToString> Pointer_t;
62 static Pointer_t pInstance;
64 map<sal_uInt32, string> mMap;
66 protected:
67 /**
68 Generated automatically.
70 SprmIdToString();
72 public:
73 static Pointer_t Instance();
74 string operator()(sal_uInt32 nId);
81 #endif // INCLUDED_QNAME_TO_STRING_HXX
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */