aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/PropSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/PropSet.h')
-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);
};
/**