summaryrefslogtreecommitdiff
path: root/src/osx/Graph+Coder.m
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-09 11:00:06 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-09 11:00:06 +0000
commite1cf0babff63e670e0d550b4072c22649a117fa7 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/osx/Graph+Coder.m
parent49393f6f445deb37e55a81798f88242e3e99d7a0 (diff)
Re-make trunk
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@364 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'src/osx/Graph+Coder.m')
-rw-r--r--src/osx/Graph+Coder.m25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/osx/Graph+Coder.m b/src/osx/Graph+Coder.m
deleted file mode 100644
index 6a3f650..0000000
--- a/src/osx/Graph+Coder.m
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// Graph+Coder.m
-// TikZiT
-//
-// Created by Aleks Kissinger on 27/04/2010.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "Graph+Coder.h"
-#import "TikzGraphAssembler.h"
-
-@implementation Graph(Coder)
-
-- (id)initWithCoder:(NSCoder*)coder {
- NSString *tikz = [coder decodeObject];
- TikzGraphAssembler *ass = [[TikzGraphAssembler alloc] init];
- [ass parseTikz:tikz forGraph:self];
- return self;
-}
-
-- (void)encodeWithCoder:(NSCoder*)coder {
- [coder encodeObject:[self tikz]];
-}
-
-@end