LCOV - code coverage report
Current view: top level - graphic - GraphicObject.hpp (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 5 22 22.7 %
Date: 2013-07-09 Functions: 1 2 50.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : #ifndef INCLUDED_COM_SUN_STAR_GRAPHIC_GRAPHICOBJECT_HPP
       2             : #define INCLUDED_COM_SUN_STAR_GRAPHIC_GRAPHICOBJECT_HPP
       3             : 
       4             : #include "sal/config.h"
       5             : 
       6             : #include <cassert>
       7             : 
       8             : #include "com/sun/star/graphic/XGraphicObject.hpp"
       9             : #include "com/sun/star/uno/DeploymentException.hpp"
      10             : #include "com/sun/star/uno/Exception.hpp"
      11             : #include "com/sun/star/uno/RuntimeException.hpp"
      12             : #include "com/sun/star/uno/XComponentContext.hpp"
      13             : #include "com/sun/star/uno/Any.hxx"
      14             : #include "com/sun/star/uno/Reference.hxx"
      15             : #include "com/sun/star/uno/Sequence.hxx"
      16             : #include "cppu/unotype.hxx"
      17             : #include "rtl/ustring.h"
      18             : #include "rtl/ustring.hxx"
      19             : 
      20             : namespace com { namespace sun { namespace star { namespace graphic {
      21             : 
      22             : class GraphicObject {
      23             : public:
      24          46 :     static ::com::sun::star::uno::Reference< css::graphic::XGraphicObject > create(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context) {
      25             :         assert(the_context.is());
      26          46 :         ::com::sun::star::uno::Reference< css::graphic::XGraphicObject > the_instance;
      27             :         try {
      28          46 :             the_instance = ::com::sun::star::uno::Reference< css::graphic::XGraphicObject >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.graphic.GraphicObject" ), ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >(), the_context), ::com::sun::star::uno::UNO_QUERY);
      29           0 :         } catch (const ::com::sun::star::uno::RuntimeException &) {
      30           0 :             throw;
      31           0 :         } catch (const ::com::sun::star::uno::Exception & the_exception) {
      32           0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.graphic.GraphicObject of type com.sun.star.graphic.XGraphicObject: " ) + the_exception.Message, the_context);
      33             :         }
      34          46 :         if (!the_instance.is()) {
      35           0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.graphic.GraphicObject of type com.sun.star.graphic.XGraphicObject" ), the_context);
      36             :         }
      37          46 :         return the_instance;
      38             :     }
      39             : 
      40           0 :     static ::com::sun::star::uno::Reference< css::graphic::XGraphicObject > createWithId(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & the_context, const ::rtl::OUString& uniqueId) {
      41             :         assert(the_context.is());
      42           0 :         ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > the_arguments(1);
      43           0 :         the_arguments[0] <<= uniqueId;
      44           0 :         ::com::sun::star::uno::Reference< css::graphic::XGraphicObject > the_instance;
      45             :         try {
      46           0 :             the_instance = ::com::sun::star::uno::Reference< css::graphic::XGraphicObject >(the_context->getServiceManager()->createInstanceWithArgumentsAndContext(::rtl::OUString( "com.sun.star.graphic.GraphicObject" ), the_arguments, the_context), ::com::sun::star::uno::UNO_QUERY);
      47           0 :         } catch (const ::com::sun::star::uno::RuntimeException &) {
      48           0 :             throw;
      49           0 :         } catch (const ::com::sun::star::uno::Exception & the_exception) {
      50           0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.graphic.GraphicObject of type com.sun.star.graphic.XGraphicObject: " ) + the_exception.Message, the_context);
      51             :         }
      52           0 :         if (!the_instance.is()) {
      53           0 :             throw ::com::sun::star::uno::DeploymentException(::rtl::OUString( "component context fails to supply service com.sun.star.graphic.GraphicObject of type com.sun.star.graphic.XGraphicObject" ), the_context);
      54             :         }
      55           0 :         return the_instance;
      56             :     }
      57             : 
      58             : private:
      59             :     GraphicObject(); // not implemented
      60             :     GraphicObject(GraphicObject &); // not implemented
      61             :     ~GraphicObject(); // not implemented
      62             :     void operator =(GraphicObject); // not implemented
      63             : };
      64             : 
      65             : } } } }
      66             : 
      67             : #endif // INCLUDED_COM_SUN_STAR_GRAPHIC_GRAPHICOBJECT_HPP

Generated by: LCOV version 1.10