Skip to content

Commit

Permalink
Moved iVars to Implementation-File
Browse files Browse the repository at this point in the history
  • Loading branch information
myell0w committed Apr 10, 2012
1 parent db9c51b commit 9179199
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion RaptureXML.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
0252B2B4142ADFC60018B75D = {
isa = PBXGroup;
children = (
02041DC21526D03A00D1F36A /* MediaPlayer.framework */,
027DAC3814FBF4B5001BA563 /* Library-Prefix.pch */,
027DAC2B14FBF443001BA563 /* RaptureXML */,
0252B2E5142ADFC60018B75D /* Tests */,
Expand All @@ -105,6 +104,7 @@
children = (
02041DB71526A71200D1F36A /* libxml2.dylib */,
0252B305142AE3FF0018B75D /* libz.dylib */,
02041DC21526D03A00D1F36A /* MediaPlayer.framework */,
0252B2C3142ADFC60018B75D /* UIKit.framework */,
0252B2C5142ADFC60018B75D /* Foundation.framework */,
0252B2C7142ADFC60018B75D /* CoreGraphics.framework */,
Expand Down
5 changes: 1 addition & 4 deletions RaptureXML/RXMLElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@
#import <libxml2/libxml/xmlreader.h>
#import <libxml2/libxml/xmlmemory.h>

@interface RXMLElement : NSObject {
xmlDocPtr doc_;
xmlNodePtr node_;
}
@interface RXMLElement : NSObject

- (id)initFromXMLString:(NSString *)xmlString withEncoding:(NSStringEncoding)encoding;
- (id)initFromXMLFile:(NSString *)filename;
Expand Down
5 changes: 4 additions & 1 deletion RaptureXML/RXMLElement.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@

#import "RXMLElement.h"

@implementation RXMLElement
@implementation RXMLElement {
xmlDocPtr doc_;
xmlNodePtr node_;
}

- (id)initFromXMLString:(NSString *)xmlString withEncoding:(NSStringEncoding)encoding {
if ((self = [super init])) {
Expand Down

0 comments on commit 9179199

Please sign in to comment.