summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
authorMichael Stahl <mst@openoffice.org>2010-03-09 13:27:16 +0100
committerMichael Stahl <mst@openoffice.org>2010-03-09 13:27:16 +0100
commit7743d0f0a9357e08af3eba7868c4e1c713365d30 (patch)
treeb6c06dd711c277b1291936e84707c747bced708f /unoxml
parenta3383b6d9aef96303f55377be3dd1286485ec2ac (diff)
odfmetadata4: #i108911#: unordf: remove dead code: XStatement implementation
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/source/rdf/librdf_repository.cxx82
1 files changed, 0 insertions, 82 deletions
diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx
index b42d02f8f26a..2d8e3c473c6b 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -173,69 +173,6 @@ static void safe_librdf_free_uri(librdf_uri *const uri)
if (uri) { librdf_free_uri(uri); }
}
-////////////////////////////////////////////////////////////////////////////
-
-#if 0
-class librdf_Statement:
- public ::cppu::WeakImplHelper1<
- rdf::XStatement>
-{
-public:
-
- librdf_Statement(
- uno::Reference< rdf::XResource > const & i_xSubject,
- uno::Reference< rdf::XResource > const & i_xPredicate,
- uno::Reference< rdf::XNode > const & i_xObject,
- uno::Reference< rdf::XURI > const & i_xGraph)
- : m_xSubject(i_xSubject), m_xPredicate(i_xPredicate),
- m_xObject(i_xObject), m_xGraph(i_xGraph)
- { }
- virtual ~librdf_Statement() {}
-
- // ::com::sun::star::rdf::XStatement:
- virtual uno::Reference< rdf::XResource > SAL_CALL getSubject()
- throw (uno::RuntimeException);
- virtual uno::Reference< rdf::XResource > SAL_CALL getPredicate()
- throw (uno::RuntimeException);
- virtual uno::Reference< rdf::XNode > SAL_CALL getObject()
- throw (uno::RuntimeException);
- virtual uno::Reference< rdf::XURI > SAL_CALL getGraph()
- throw (uno::RuntimeException);
-
-private:
-
- uno::Reference< rdf::XResource > m_xSubject;
- uno::Reference< rdf::XResource > m_xPredicate;
- uno::Reference< rdf::XNode > m_xObject;
- uno::Reference< rdf::XURI > m_xGraph;
-};
-
-// ::com::sun::star::rdf::XStatement:
-uno::Reference< rdf::XResource > SAL_CALL
-librdf_Statement::getSubject() throw (uno::RuntimeException)
-{
- return m_xSubject;
-}
-
-uno::Reference< rdf::XResource > SAL_CALL
-librdf_Statement::getPredicate() throw (uno::RuntimeException)
-{
- return m_xPredicate;
-}
-
-uno::Reference< rdf::XNode > SAL_CALL
-librdf_Statement::getObject() throw (uno::RuntimeException)
-{
- return m_xObject;
-}
-
-uno::Reference< rdf::XURI > SAL_CALL
-librdf_Statement::getGraph() throw (uno::RuntimeException)
-{
- return m_xGraph;
-}
-#endif
-
////////////////////////////////////////////////////////////////////////////
@@ -270,9 +207,6 @@ public:
uno::Reference<rdf::XResource>
convertToXResource(librdf_node* i_pNode) const;
uno::Reference<rdf::XNode> convertToXNode(librdf_node* i_pNode) const;
-// uno::Reference<rdf::XStatement>
-// convertToXStatement(librdf_statement* i_pStmt, librdf_node* i_pContext)
-// const;
rdf::Statement
convertToStatement(librdf_statement* i_pStmt, librdf_node* i_pContext)
const;
@@ -2267,22 +2201,6 @@ librdf_TypeConverter::convertToXNode(librdf_node* i_pNode) const
}
}
-#if 0
-uno::Reference<rdf::XStatement>
-librdf_TypeConverter::convertToXStatement(librdf_statement* i_pStmt,
- librdf_node* i_pContext) const
-{
- if (!i_pStmt) {
- throw uno::RuntimeException();
- }
- return new librdf_Statement(
- convertToXResource(librdf_statement_get_subject(i_pStmt)),
- convertToXResource(librdf_statement_get_predicate(i_pStmt)),
- convertToXNode(librdf_statement_get_object(i_pStmt)),
- convertToXURI(i_pContext));
-}
-#endif
-
rdf::Statement
librdf_TypeConverter::convertToStatement(librdf_statement* i_pStmt,
librdf_node* i_pContext) const