objc

JSON+Protocol.h
Go to the documentation of this file.
1 
5 #pragma once
6 
14 @protocol JSONProtocol
15 
16 @required
21 - (NXString *)JSONString;
22 
33 - (size_t)JSONBytes;
34 
35 @end
NXString * JSONString()
Returns a JSON representation of the instance.
A class for managing and manipulating string objects.
Definition: NXString.h:20
size_t JSONBytes()
Returns the appropriate capacity for the JSON representation of the instance.
A protocol that defines JSON methods for an Object.
Definition: JSON+Protocol.h:14