diff options
| -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);  };  /** | 
