summaryrefslogtreecommitdiff
path: root/include/store/store.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/store/store.hxx')
-rw-r--r--include/store/store.hxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/store/store.hxx b/include/store/store.hxx
index 5800169bb70b..1aa19b58825f 100644
--- a/include/store/store.hxx
+++ b/include/store/store.hxx
@@ -72,15 +72,6 @@ public:
return *this;
}
- /** Construction from Stream Handle.
- */
- inline explicit OStoreStream (storeStreamHandle Handle)
- : m_hImpl (Handle)
- {
- if (m_hImpl)
- (void) store_acquireHandle (m_hImpl);
- }
-
/** Open the stream.
@see store_openStream()
*/
@@ -177,15 +168,6 @@ public:
return *this;
}
- /** Construction from Directory Handle.
- */
- inline explicit OStoreDirectory (storeDirectoryHandle Handle)
- : m_hImpl (Handle)
- {
- if (m_hImpl)
- (void) store_acquireHandle (m_hImpl);
- }
-
/** Open the directory.
@see store_openDirectory()
*/
@@ -280,15 +262,6 @@ public:
return *this;
}
- /** Construction from File Handle.
- */
- inline explicit OStoreFile (storeFileHandle Handle)
- : m_hImpl (Handle)
- {
- if (m_hImpl)
- (void) store_acquireHandle (m_hImpl);
- }
-
/** Conversion into File Handle.
*/
inline operator storeFileHandle() const