summaryrefslogtreecommitdiff
path: root/registry/source/reflread.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'registry/source/reflread.hxx')
-rw-r--r--registry/source/reflread.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/registry/source/reflread.hxx b/registry/source/reflread.hxx
index a4f3b9feb515..6912fa8baf45 100644
--- a/registry/source/reflread.hxx
+++ b/registry/source/reflread.hxx
@@ -51,16 +51,9 @@ public:
sal_uInt32 bufferLen,
bool copyData);
- /// Copy constructcor
- RegistryTypeReader(const RegistryTypeReader& toCopy);
-
/// Destructor. The Destructor frees the data block if the copyData flag was TRUE.
~RegistryTypeReader();
- /// Assign operator
- RegistryTypeReader& operator == (const RegistryTypeReader& toAssign);
-
-
/** returns the typeclass of the type represented by this blob.
This function will always return the type class without the internal
@@ -113,7 +106,9 @@ public:
*/
rtl::OUString getFieldFileName( sal_uInt16 index ) const;
-protected:
+private:
+ RegistryTypeReader(RegistryTypeReader &) = delete;
+ void operator =(RegistryTypeReader) = delete;
/// stores the handle of an implementation class
TypeReaderImpl m_hImpl;