LCOV - code coverage report
Current view: top level - writerfilter/source/ooxml - OOXMLFastTokenHandler.hxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 1 0.0 %
Date: 2014-04-14 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          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             : 
      20             : #ifndef INCLUDED_OOXML_FAST_TOKEN_HANDLER_HXX
      21             : #define INCLUDED_OOXML_FAST_TOKEN_HANDLER_HXX
      22             : 
      23             : #include "sal/config.h"
      24             : #include "com/sun/star/uno/XComponentContext.hpp"
      25             : #include "cppuhelper/implbase1.hxx"
      26             : #include "com/sun/star/xml/sax/XFastTokenHandler.hpp"
      27             : #include "sax/fastattribs.hxx"
      28             : 
      29             : namespace writerfilter {
      30             : namespace ooxml
      31             : {
      32             : 
      33             : class OOXMLFastTokenHandler:
      34             :     public ::cppu::WeakImplHelper1<
      35             :         css::xml::sax::XFastTokenHandler>,
      36             :     public sax_fastparser::FastTokenHandlerBase
      37             : {
      38             : public:
      39             :     explicit OOXMLFastTokenHandler(css::uno::Reference< css::uno::XComponentContext > const & context);
      40             : 
      41             :     // ::com::sun::star::xml::sax::XFastTokenHandler:
      42             :     virtual ::sal_Int32 SAL_CALL getToken(const OUString & Identifier) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      43             :     virtual OUString SAL_CALL getIdentifier(::sal_Int32 Token) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      44             :     virtual css::uno::Sequence< ::sal_Int8 > SAL_CALL getUTF8Identifier(::sal_Int32 Token) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      45             :     virtual ::sal_Int32 SAL_CALL getTokenFromUTF8(const css::uno::Sequence< ::sal_Int8 > & Identifier) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      46             : 
      47             :     // Much faster direct C++ shortcut to the method that matters
      48             :     virtual sal_Int32 getTokenDirect( const char *pToken, sal_Int32 nLength ) const SAL_OVERRIDE;
      49             : 
      50             : private:
      51             :     OOXMLFastTokenHandler(OOXMLFastTokenHandler &); // not defined
      52             :     void operator =(OOXMLFastTokenHandler &); // not defined
      53             : 
      54           0 :     virtual ~OOXMLFastTokenHandler() {}
      55             : 
      56             :     css::uno::Reference< css::uno::XComponentContext > m_xContext;
      57             : };
      58             : 
      59             : }}
      60             : #endif // INCLUDED_OOXML_FAST_TOKEN_HANDLER_HXX
      61             : 
      62             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10