summaryrefslogtreecommitdiff
path: root/tikzit/src/common/GraphElementProperty.h
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-03-08 18:22:22 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-03-08 18:22:22 +0000
commit0cd05a572e48b1e649ecdc8b24920c497e40466e (patch)
tree3f6e2aa5543c809fc7727e070c5e7ae11f3eaa3e /tikzit/src/common/GraphElementProperty.h
parentd26e56e2fd57da2dadddf760b2984956f7daa069 (diff)
Fix how copying is implemented
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@419 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'tikzit/src/common/GraphElementProperty.h')
-rw-r--r--tikzit/src/common/GraphElementProperty.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/tikzit/src/common/GraphElementProperty.h b/tikzit/src/common/GraphElementProperty.h
index e8fe2a2..3ca93dc 100644
--- a/tikzit/src/common/GraphElementProperty.h
+++ b/tikzit/src/common/GraphElementProperty.h
@@ -28,7 +28,7 @@
@brief A property. I.e. a single entry in a node's/edge's/graph's
GraphElementData table.
*/
-@interface GraphElementProperty : NSObject {
+@interface GraphElementProperty : NSObject<NSCopying> {
NSString *key;
NSString *value;
BOOL isAtom;
@@ -80,12 +80,6 @@
*/
- (BOOL)isEqual:(id)object;
-/*!
- @brief Make a deep copy of this property.
- @result A new property.
- */
-- (id)copy;
-
@end
// vi:ft=objc:noet:ts=4:sts=4:sw=4