removed mods directory from the ATutor codebase
[atutor.git] / mods / atsocial_iphone_app / TouchJSON / JSON / CJSONScanner.h
diff --git a/mods/atsocial_iphone_app/TouchJSON/JSON/CJSONScanner.h b/mods/atsocial_iphone_app/TouchJSON/JSON/CJSONScanner.h
deleted file mode 100755 (executable)
index 3210d65..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-//  CJSONScanner.h
-//  TouchJSON
-//
-//  Created by Jonathan Wight on 12/07/2005.
-//  Copyright 2005 Toxic Software. All rights reserved.
-//
-
-#import "CDataScanner.h"
-
-@interface CJSONScanner : CDataScanner {
-       BOOL scanComments;
-       NSCharacterSet *notQuoteCharacters;
-       NSCharacterSet *whitespaceCharacterSet;
-}
-
-@property (readwrite, assign) BOOL scanComments;
-
-- (BOOL)scanJSONObject:(id *)outObject error:(NSError **)outError;
-- (BOOL)scanJSONDictionary:(NSDictionary **)outDictionary error:(NSError **)outError;
-- (BOOL)scanJSONArray:(NSArray **)outArray error:(NSError **)outError;
-- (BOOL)scanJSONStringConstant:(NSString **)outStringConstant error:(NSError **)outError;
-- (BOOL)scanJSONNumberConstant:(NSNumber **)outNumberConstant error:(NSError **)outError;
-- (void)skipJSONWhitespace;
-
-@end