Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef INCLUDED_QNAME_TO_STRING_HXX
20 : #define INCLUDED_QNAME_TO_STRING_HXX
21 :
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>
29 :
30 : namespace writerfilter
31 : {
32 : using namespace ::std;
33 :
34 3 : class QNameToString
35 : {
36 : typedef boost::shared_ptr<QNameToString> Pointer_t;
37 : typedef map < Id, string > Map;
38 :
39 : static Pointer_t pInstance;
40 :
41 : void init_ooxml();
42 :
43 : Map mMap;
44 :
45 : protected:
46 : /**
47 : Generated.
48 : */
49 : QNameToString();
50 :
51 : public:
52 : static Pointer_t Instance();
53 :
54 : string operator()(Id qName);
55 : };
56 :
57 : class SprmIdToString
58 : {
59 : typedef boost::shared_ptr<SprmIdToString> Pointer_t;
60 :
61 : static Pointer_t pInstance;
62 :
63 : map<sal_uInt32, string> mMap;
64 :
65 : protected:
66 : /**
67 : Generated automatically.
68 : */
69 : SprmIdToString();
70 :
71 : public:
72 : static Pointer_t Instance();
73 : string operator()(sal_uInt32 nId);
74 : };
75 :
76 :
77 :
78 : }
79 :
80 : #endif // INCLUDED_QNAME_TO_STRING_HXX
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|