Clean up function declarations
Change-Id: I1be08414e3c816f01a9712eeb9474acc16838389
This commit is contained in:
@@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#include "CNodes.hxx"
|
#include "CNodes.hxx"
|
||||||
|
|
||||||
|
#include <boost/noncopyable.hpp>
|
||||||
#include <cppuhelper/implbase3.hxx>
|
#include <cppuhelper/implbase3.hxx>
|
||||||
#include <cppuhelper/supportsservice.hxx>
|
#include <cppuhelper/supportsservice.hxx>
|
||||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||||
@@ -35,7 +36,8 @@ class CBlankNode:
|
|||||||
public ::cppu::WeakImplHelper3<
|
public ::cppu::WeakImplHelper3<
|
||||||
css::lang::XServiceInfo,
|
css::lang::XServiceInfo,
|
||||||
css::lang::XInitialization,
|
css::lang::XInitialization,
|
||||||
css::rdf::XBlankNode>
|
css::rdf::XBlankNode>,
|
||||||
|
private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit CBlankNode(css::uno::Reference< css::uno::XComponentContext > const & context);
|
explicit CBlankNode(css::uno::Reference< css::uno::XComponentContext > const & context);
|
||||||
@@ -53,9 +55,6 @@ public:
|
|||||||
virtual OUString SAL_CALL getStringValue() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual OUString SAL_CALL getStringValue() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CBlankNode(const CBlankNode &); // not defined
|
|
||||||
CBlankNode& operator=(const CBlankNode &); // not defined
|
|
||||||
|
|
||||||
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
||||||
|
|
||||||
OUString m_NodeID;
|
OUString m_NodeID;
|
||||||
|
@@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#include "CNodes.hxx"
|
#include "CNodes.hxx"
|
||||||
|
|
||||||
|
#include <boost/noncopyable.hpp>
|
||||||
#include <cppuhelper/implbase3.hxx>
|
#include <cppuhelper/implbase3.hxx>
|
||||||
#include <cppuhelper/supportsservice.hxx>
|
#include <cppuhelper/supportsservice.hxx>
|
||||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||||
@@ -37,7 +38,8 @@ class CLiteral:
|
|||||||
public ::cppu::WeakImplHelper3<
|
public ::cppu::WeakImplHelper3<
|
||||||
css::lang::XServiceInfo,
|
css::lang::XServiceInfo,
|
||||||
css::lang::XInitialization,
|
css::lang::XInitialization,
|
||||||
css::rdf::XLiteral>
|
css::rdf::XLiteral>,
|
||||||
|
private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit CLiteral(css::uno::Reference< css::uno::XComponentContext > const & context);
|
explicit CLiteral(css::uno::Reference< css::uno::XComponentContext > const & context);
|
||||||
@@ -60,9 +62,6 @@ public:
|
|||||||
virtual css::uno::Reference< css::rdf::XURI > SAL_CALL getDatatype() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual css::uno::Reference< css::rdf::XURI > SAL_CALL getDatatype() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CLiteral(const CLiteral &); // not defined
|
|
||||||
CLiteral& operator=(const CLiteral &); // not defined
|
|
||||||
|
|
||||||
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
||||||
|
|
||||||
OUString m_Value;
|
OUString m_Value;
|
||||||
|
@@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#include "CNodes.hxx"
|
#include "CNodes.hxx"
|
||||||
|
|
||||||
|
#include <boost/noncopyable.hpp>
|
||||||
#include <cppuhelper/implbase3.hxx>
|
#include <cppuhelper/implbase3.hxx>
|
||||||
#include <cppuhelper/supportsservice.hxx>
|
#include <cppuhelper/supportsservice.hxx>
|
||||||
#include <com/sun/star/lang/XServiceInfo.hpp>
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
||||||
@@ -36,7 +37,8 @@ class CURI:
|
|||||||
public ::cppu::WeakImplHelper3<
|
public ::cppu::WeakImplHelper3<
|
||||||
css::lang::XServiceInfo,
|
css::lang::XServiceInfo,
|
||||||
css::lang::XInitialization,
|
css::lang::XInitialization,
|
||||||
css::rdf::XURI>
|
css::rdf::XURI>,
|
||||||
|
private boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit CURI(css::uno::Reference< css::uno::XComponentContext > const & context);
|
explicit CURI(css::uno::Reference< css::uno::XComponentContext > const & context);
|
||||||
@@ -58,9 +60,6 @@ public:
|
|||||||
virtual OUString SAL_CALL getNamespace() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual OUString SAL_CALL getNamespace() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
CURI(const CURI &); // not defined
|
|
||||||
CURI& operator=(const CURI &); // not defined
|
|
||||||
|
|
||||||
/// handle css.rdf.URIs
|
/// handle css.rdf.URIs
|
||||||
void SAL_CALL initFromConstant(const sal_Int16 i_Constant);
|
void SAL_CALL initFromConstant(const sal_Int16 i_Constant);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user