android: Update app-specific/MIME type icons
[LibreOffice.git] / writerfilter / source / ooxml / OOXMLFastHelper.hxx
blobecb8b6943b1108e1bff14188f91630d9abf85fc8
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 #pragma once
21 #include "OOXMLFastContextHandler.hxx"
23 namespace writerfilter::ooxml
26 template <class T>
27 class OOXMLFastHelper
29 public:
30 static rtl::Reference<OOXMLFastContextHandler> createAndSetParentAndDefine
31 (OOXMLFastContextHandler * pHandler, sal_uInt32 nToken, Id nId, Id nDefine);
33 static void newProperty(OOXMLFastContextHandler * pHandler,
34 Id nId, sal_Int32 nValue);
37 template <class T>
38 rtl::Reference<OOXMLFastContextHandler> OOXMLFastHelper<T>::createAndSetParentAndDefine (OOXMLFastContextHandler * pHandler, sal_uInt32 nToken, Id nId, Id nDefine)
40 rtl::Reference<OOXMLFastContextHandler> pTmp = new T(pHandler);
42 pTmp->setToken(nToken);
43 pTmp->setId(nId);
44 pTmp->setDefine(nDefine);
46 return pTmp;
49 template <class T>
50 void OOXMLFastHelper<T>::newProperty(OOXMLFastContextHandler * pHandler,
51 Id nId,
52 sal_Int32 nVal)
54 OOXMLValue::Pointer_t pVal(T::Create(nVal));
56 pHandler->newProperty(nId, pVal);
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */