mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-28 09:53:23 +00:00
Monotone-Parent: 680b3d6bcb1de20bb28768ebf727ed9053b9e2a0
Monotone-Revision: e94c8ae67d2887b188febc57c064c3e5be325bc9 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-12-13T18:54:27 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
//
|
||||
// BSJSONAdditions
|
||||
//
|
||||
// Created by Blake Seely on 2/1/06.
|
||||
// Copyright 2006 Blake Seely - http://www.blakeseely.com All rights reserved.
|
||||
// Permission to use this code:
|
||||
//
|
||||
// Feel free to use this code in your software, either as-is or
|
||||
// in a modified form. Either way, please include a credit in
|
||||
// your software's "About" box or similar, mentioning at least
|
||||
// my name (Blake Seely).
|
||||
//
|
||||
// Permission to redistribute this code:
|
||||
//
|
||||
// You can redistribute this code, as long as you keep these
|
||||
// comments. You can also redistribute modified versions of the
|
||||
// code, as long as you add comments to say that you've made
|
||||
// modifications (keeping these original comments too).
|
||||
//
|
||||
// If you do use or redistribute this code, an email would be
|
||||
// appreciated, just to let me know that people are finding my
|
||||
// code useful. You can reach me at blakeseely@mac.com
|
||||
|
||||
#import <Foundation/NSDictionary.h>
|
||||
|
||||
extern NSString *jsonIndentString;
|
||||
extern const int jsonDoNotIndent;
|
||||
|
||||
@interface NSDictionary (BSJSONAdditions)
|
||||
|
||||
+ (NSDictionary *)dictionaryWithJSONString:(NSString *)jsonString;
|
||||
- (NSString *)jsonStringValue;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@interface NSDictionary (PrivateBSJSONAdditions)
|
||||
|
||||
- (NSString *)jsonStringValueWithIndentLevel:(int)level;
|
||||
- (NSString *)jsonStringForValue:(id)value withIndentLevel:(int)level;
|
||||
- (NSString *)jsonStringForArray:(NSArray *)array withIndentLevel:(int)level;
|
||||
- (NSString *)jsonStringForString:(NSString *)string;
|
||||
- (NSString *)jsonIndentStringForLevel:(int)level;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user