21 lines
484 B
Objective-C
21 lines
484 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
|
|
/**
|
|
* This base class is shared by YapDatabaseTransaction and YapCollectionsDatabaseTransaction.
|
|
*
|
|
* It provides the generic implementation of a transaction.
|
|
**/
|
|
@interface YapAbstractDatabaseTransaction : NSObject
|
|
|
|
// There are no public methods in this class.
|
|
// Please see:
|
|
//
|
|
// - YapDatabaseTransaction.h
|
|
// - YapOrderedDatabaseTransaction.h
|
|
//
|
|
// - YapCollectionsDatabaseTransaction.h
|
|
// - YapOrderedCollectionsDatabaseTransaction.h
|
|
|
|
@end
|