summaryrefslogtreecommitdiff
path: root/chart2/workbench/stub/newUNOcomponent.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/workbench/stub/newUNOcomponent.hxx')
-rw-r--r--chart2/workbench/stub/newUNOcomponent.hxx58
1 files changed, 0 insertions, 58 deletions
diff --git a/chart2/workbench/stub/newUNOcomponent.hxx b/chart2/workbench/stub/newUNOcomponent.hxx
index 8b3cc8f3c405..e69de29bb2d1 100644
--- a/chart2/workbench/stub/newUNOcomponent.hxx
+++ b/chart2/workbench/stub/newUNOcomponent.hxx
@@ -1,58 +0,0 @@
-//replace XXXX and YYYY
-#ifndef _CHART2_XXXX_HXX
-#define _CHART2_XXXX_HXX
-
-#include <com/sun/star/lang/XServiceInfo.hpp>
-#include <com/sun/star/uno/XComponentContext.hpp>
-/*
-#include <com/sun/star/lang/XComponent.hpp>
-*/
-
-//----
-#include "ServiceMacros.hxx"
-
-//---- chart2
-#include <com/sun/star/chart2/YYYY.hpp>
-
-//----
-#include <cppuhelper/implbase2.hxx>
-
-//.............................................................................
-namespace chart
-{
-//.............................................................................
-
-class XXXX : public ::cppu::WeakImplHelper2<
- ::com::sun::star::chart2::YYYY
- , ::com::sun::star::lang::XServiceInfo
- //::com::sun::star::lang::XComponent ???
- //::com::sun::star::uno::XWeak // implemented by WeakImplHelper(optional interface)
- //::com::sun::star::uno::XInterface // implemented by WeakImplHelper(optional interface)
- //::com::sun::star::lang::XTypeProvider // implemented by WeakImplHelper
- >
-{
-private:
- ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiComponentFactory > m_xMCF;
-
- //no default constructor
- XXXX(){};
-public:
- XXXX(::com::sun::star::uno::Reference<
- ::com::sun::star::uno::XComponentContext > const & xContext);
- virtual ~XXXX();
-
- //-------------------------------------------------------------------------
- // ::com::sun::star::lang::XServiceInfo
- //-------------------------------------------------------------------------
-
- APPHELPER_XSERVICEINFO_DECL()
- APPHELPER_SERVICE_FACTORY_HELPER(XXXX)
-
- //-------------------------------------------------------------------------
- // chart2::YYYY
- //-------------------------------------------------------------------------
-};
-//.............................................................................
-} //namespace chart
-//.............................................................................
-#endif