diff options
author | nyamatongwe <unknown> | 2004-03-10 09:52:33 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2004-03-10 09:52:33 +0000 |
commit | 3597312dcc9b648f2cfeec683ccd88bb317479c1 (patch) | |
tree | 7b3609b5faadcb631ed9d87a1889db887f8d7dbb /include/PropSet.h | |
parent | a5a4544efdee354c70a253e72a6c3a6d7e6b5020 (diff) | |
download | scintilla-mirror-3597312dcc9b648f2cfeec683ccd88bb317479c1.tar.gz |
PropSet can not be copied so made explicit with private copy
constructor and operator=.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r-- | include/PropSet.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index 597c27059..1f4589f98 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -56,6 +56,11 @@ public: char *ToString(); // Caller must delete[] the return value bool GetFirst(char **key, char **val); bool GetNext(char **key, char **val); + +private: + // copy-value semantics not implemented + PropSet(const PropSet ©); + void operator=(const PropSet &assign); }; /** |