diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-03 15:40:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-03 15:40:37 +0200 |
commit | bb4dd8d947360f73b4eb8dcdcd13b2d18b4c2759 (patch) | |
tree | a4db72a6b269c71c0659fcaba65fef67a775185b /connectivity | |
parent | 0c50756b5eddbb19641321b54e1beb543744a9d9 (diff) |
Remove unused getBinary/CharacterStream
Change-Id: I008d4190191ebff1c6c97af120b1db2707597ffe
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/commontools/FValue.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx index 24b97ec9a2e8..d8bc37fdef1b 100644 --- a/connectivity/source/commontools/FValue.cxx +++ b/connectivity/source/commontools/FValue.cxx @@ -2181,8 +2181,6 @@ namespace detail virtual Time getTime() const = 0; virtual DateTime getTimestamp() const = 0; virtual Sequence< sal_Int8 > getBytes() const = 0; - virtual Reference< XInputStream > getBinaryStream() const = 0; - virtual Reference< XInputStream > getCharacterStream() const = 0; virtual Reference< XBlob > getBlob() const = 0; virtual Reference< XClob > getClob() const = 0; virtual Any getObject() const = 0; @@ -2213,8 +2211,6 @@ namespace detail virtual Time getTime() const SAL_OVERRIDE { return m_xRow->getTime( m_nPos ); }; virtual DateTime getTimestamp() const SAL_OVERRIDE { return m_xRow->getTimestamp( m_nPos ); }; virtual Sequence< sal_Int8 > getBytes() const SAL_OVERRIDE { return m_xRow->getBytes( m_nPos ); }; - virtual Reference< XInputStream > getBinaryStream() const SAL_OVERRIDE { return m_xRow->getBinaryStream( m_nPos ); }; - virtual Reference< XInputStream > getCharacterStream() const SAL_OVERRIDE { return m_xRow->getCharacterStream( m_nPos ); }; virtual Reference< XBlob > getBlob() const SAL_OVERRIDE { return m_xRow->getBlob( m_nPos ); }; virtual Reference< XClob > getClob() const SAL_OVERRIDE { return m_xRow->getClob( m_nPos ); }; virtual Any getObject() const SAL_OVERRIDE { return m_xRow->getObject( m_nPos ,NULL); }; @@ -2246,8 +2242,6 @@ namespace detail virtual Time getTime() const SAL_OVERRIDE { return m_xColumn->getTime(); }; virtual DateTime getTimestamp() const SAL_OVERRIDE { return m_xColumn->getTimestamp(); }; virtual Sequence< sal_Int8 > getBytes() const SAL_OVERRIDE { return m_xColumn->getBytes(); }; - virtual Reference< XInputStream > getBinaryStream() const SAL_OVERRIDE { return m_xColumn->getBinaryStream(); }; - virtual Reference< XInputStream > getCharacterStream() const SAL_OVERRIDE { return m_xColumn->getCharacterStream(); }; virtual Reference< XBlob > getBlob() const SAL_OVERRIDE { return m_xColumn->getBlob(); }; virtual Reference< XClob > getClob() const SAL_OVERRIDE { return m_xColumn->getClob(); }; virtual Any getObject() const SAL_OVERRIDE { return m_xColumn->getObject( NULL ); }; |