LCOV - code coverage report
Current view: top level - libreoffice/writerfilter/source/ooxml - OOXMLFastTokenHandler.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 1 100.0 %
Date: 2012-12-27 Functions: 2 2 100.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             : 
      28             : namespace writerfilter {
      29             : namespace ooxml
      30             : {
      31             : 
      32             : class OOXMLFastTokenHandler:
      33             :     public ::cppu::WeakImplHelper1<
      34             :         css::xml::sax::XFastTokenHandler>
      35             : {
      36             : public:
      37             :     explicit OOXMLFastTokenHandler(css::uno::Reference< css::uno::XComponentContext > const & context);
      38             : 
      39             :     // ::com::sun::star::xml::sax::XFastTokenHandler:
      40             :     virtual ::sal_Int32 SAL_CALL getToken(const OUString & Identifier) throw (css::uno::RuntimeException);
      41             :     virtual OUString SAL_CALL getIdentifier(::sal_Int32 Token) throw (css::uno::RuntimeException);
      42             :     virtual css::uno::Sequence< ::sal_Int8 > SAL_CALL getUTF8Identifier(::sal_Int32 Token) throw (css::uno::RuntimeException);
      43             :     virtual ::sal_Int32 SAL_CALL getTokenFromUTF8(const css::uno::Sequence< ::sal_Int8 > & Identifier) throw (css::uno::RuntimeException);
      44             : 
      45             : private:
      46             :     OOXMLFastTokenHandler(OOXMLFastTokenHandler &); // not defined
      47             :     void operator =(OOXMLFastTokenHandler &); // not defined
      48             : 
      49        1452 :     virtual ~OOXMLFastTokenHandler() {}
      50             : 
      51             :     css::uno::Reference< css::uno::XComponentContext > m_xContext;
      52             : };
      53             : 
      54             : }}
      55             : #endif // INCLUDED_OOXML_FAST_TOKEN_HANDLER_HXX
      56             : 
      57             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10