aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-03-10 09:52:33 +0000
committernyamatongwe <devnull@localhost>2004-03-10 09:52:33 +0000
commit37dbaecd8fa2b66dfc81de5b9c3ac0f2d5bbcf33 (patch)
tree7b3609b5faadcb631ed9d87a1889db887f8d7dbb
parent1c8073271484629a5d673396316f7a0f801b50e8 (diff)
downloadscintilla-mirror-37dbaecd8fa2b66dfc81de5b9c3ac0f2d5bbcf33.tar.gz
PropSet can not be copied so made explicit with private copy
constructor and operator=.
-rw-r--r--include/PropSet.h5
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 &copy);
+ void operator=(const PropSet &assign);
};
/**