Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion Parse/Internal/Object/PFObjectPrivate.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,19 @@
///--------------------------------------

// Extension for property methods.
@interface PFObject ()
@interface PFObject () {
@protected
BOOL dirty;

// An array of NSDictionary of NSString -> PFFieldOperation.
// Each dictionary has a subset of the object's keys as keys, and the
// changes to the value for that key as its value.
// There is always at least one dictionary of pending operations.
// Every time a save is started, a new dictionary is added to the end.
// Whenever a save completes, the new data is put into fetchedData, and
// a dictionary is removed from the start.
NSMutableArray *operationSetQueue;
}

/*!
@returns Current object state.
Expand Down
13 changes: 1 addition & 12 deletions Parse/PFObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,7 @@ extern NSString *const PFObjectDefaultPin;
This is the main class that is used to interact with objects in your app.
*/
NS_REQUIRES_PROPERTY_DEFINITIONS
@interface PFObject : NSObject {
BOOL dirty;

// An array of NSDictionary of NSString -> PFFieldOperation.
// Each dictionary has a subset of the object's keys as keys, and the
// changes to the value for that key as its value.
// There is always at least one dictionary of pending operations.
// Every time a save is started, a new dictionary is added to the end.
// Whenever a save completes, the new data is put into fetchedData, and
// a dictionary is removed from the start.
NSMutableArray *__nullable operationSetQueue;
}
@interface PFObject : NSObject

///--------------------------------------
/// @name Creating a PFObject
Expand Down