diff options
| author | nyamatongwe <devnull@localhost> | 2004-03-10 09:52:33 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2004-03-10 09:52:33 +0000 | 
| commit | 37dbaecd8fa2b66dfc81de5b9c3ac0f2d5bbcf33 (patch) | |
| tree | 7b3609b5faadcb631ed9d87a1889db887f8d7dbb /include/PropSet.h | |
| parent | 1c8073271484629a5d673396316f7a0f801b50e8 (diff) | |
| download | scintilla-mirror-37dbaecd8fa2b66dfc81de5b9c3ac0f2d5bbcf33.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);  };  /** | 
