From 6e8e84cdcb300092f93479d50e62479c83f1ac49 Mon Sep 17 00:00:00 2001 From: randomguy3 Date: Tue, 17 Jan 2012 17:58:26 +0000 Subject: Remove BasicMapTable git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@385 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64 --- tikzit/src/common/Graph.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'tikzit/src/common/Graph.h') diff --git a/tikzit/src/common/Graph.h b/tikzit/src/common/Graph.h index f396912..d9b4a3c 100644 --- a/tikzit/src/common/Graph.h +++ b/tikzit/src/common/Graph.h @@ -35,7 +35,6 @@ #import "Node.h" #import "Edge.h" #import "GraphChange.h" -#import "BasicMapTable.h" #import "Transformer.h" /*! @@ -53,8 +52,8 @@ // NSSet *nodesCache; // NSSet *edgesCache; - BasicMapTable *inEdges; - BasicMapTable *outEdges; + NSMapTable *inEdges; + NSMapTable *outEdges; GraphElementData *data; NSRect boundingBox; @@ -312,18 +311,18 @@ keys are the original nodes. This is used to save the state of a set of nodes in a GraphChange. @param nds a set of nodes. - @result A BasicMapTable of node copies. + @result A NSMapTable of node copies. */ -+ (BasicMapTable*)nodeTableForNodes:(NSSet*)nds; ++ (NSMapTable*)nodeTableForNodes:(NSSet*)nds; /*! @brief Copy the edge set and return a table of copies, whose keys are the original edges. This is used to save the state of a set of edges in a GraphChange. @param es a set of edges. - @result A BasicMapTable of edge copies. + @result A NSMapTable of edge copies. */ -+ (BasicMapTable*)edgeTableForEdges:(NSSet*)es; ++ (NSMapTable*)edgeTableForEdges:(NSSet*)es; /*! @brief Compute the bounds for a set of nodes. -- cgit v1.2.3