summaryrefslogtreecommitdiff
path: root/tikzit/src/common/GraphChange.h
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-17 17:58:26 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-17 17:58:26 +0000
commit6e8e84cdcb300092f93479d50e62479c83f1ac49 (patch)
tree65dabad9217ef0ad4e8ca388287d599b1e0125bf /tikzit/src/common/GraphChange.h
parent18c354ee32a605f50e094ab9c16099d3fde4cb88 (diff)
Remove BasicMapTable
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@385 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'tikzit/src/common/GraphChange.h')
-rw-r--r--tikzit/src/common/GraphChange.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/tikzit/src/common/GraphChange.h b/tikzit/src/common/GraphChange.h
index 63bdfad..73a912a 100644
--- a/tikzit/src/common/GraphChange.h
+++ b/tikzit/src/common/GraphChange.h
@@ -23,7 +23,6 @@
#import "Node.h"
#import "Edge.h"
-#import "BasicMapTable.h"
typedef enum {
GraphAddition,
@@ -63,8 +62,8 @@ typedef enum {
Node *oldNode, *nwNode;
Edge *oldEdge, *nwEdge;
- BasicMapTable *oldNodeTable, *nwNodeTable;
- BasicMapTable *oldEdgeTable, *nwEdgeTable;
+ NSMapTable *oldNodeTable, *nwNodeTable;
+ NSMapTable *oldEdgeTable, *nwEdgeTable;
NSRect oldBoundingBox, nwBoundingBox;
GraphElementData *oldGraphData, *nwGraphData;
}
@@ -139,25 +138,25 @@ typedef enum {
@property oldNodeTable
@brief A a table containing copies of a set of nodes pre-change.
*/
-@property (retain) BasicMapTable *oldNodeTable;
+@property (retain) NSMapTable *oldNodeTable;
/*!
@property nwNodeTable
@brief A a table containing copies of a set of nodes post-change.
*/
-@property (retain) BasicMapTable *nwNodeTable;
+@property (retain) NSMapTable *nwNodeTable;
/*!
@property oldEdgeTable
@brief A a table containing copies of a set of edges pre-change.
*/
-@property (retain) BasicMapTable *oldEdgeTable;
+@property (retain) NSMapTable *oldEdgeTable;
/*!
@property nwEdgeTable
@brief A a table containing copies of a set of edges post-change.
*/
-@property (retain) BasicMapTable *nwEdgeTable;
+@property (retain) NSMapTable *nwEdgeTable;
/*!
@property oldBoundingBox
@@ -238,8 +237,8 @@ typedef enum {
@param newC a table of copies of nodes post-change
@result A property change of a set of nodes.
*/
-+ (GraphChange*)propertyChangeOfNodesFromOldCopies:(BasicMapTable*)oldC
- toNewCopies:(BasicMapTable*)newC;
++ (GraphChange*)propertyChangeOfNodesFromOldCopies:(NSMapTable*)oldC
+ toNewCopies:(NSMapTable*)newC;
/*!
@brief Construct a property change of set of edges.
@@ -251,8 +250,8 @@ typedef enum {
@param newC a table of copies of edges post-change
@result A property change of a set of edges.
*/
-+ (GraphChange*)propertyChangeOfEdgesFromOldCopies:(BasicMapTable*)oldC
- toNewCopies:(BasicMapTable*)newC;
++ (GraphChange*)propertyChangeOfEdgesFromOldCopies:(NSMapTable*)oldC
+ toNewCopies:(NSMapTable*)newC;
/*!