diff --git a/src/frameworks/CMakeLists.txt b/src/frameworks/CMakeLists.txt index 567e8be54..44b601ae9 100644 --- a/src/frameworks/CMakeLists.txt +++ b/src/frameworks/CMakeLists.txt @@ -8,6 +8,7 @@ add_subdirectory(ApplicationServices) add_subdirectory(AVFoundation) add_subdirectory(AVKit) add_subdirectory(Carbon) +add_subdirectory(CloudKit) add_subdirectory(ColorSync) add_subdirectory(Contacts) add_subdirectory(CoreImage) diff --git a/src/frameworks/CloudKit/CMakeLists.txt b/src/frameworks/CloudKit/CMakeLists.txt new file mode 100644 index 000000000..c71a77c6f --- /dev/null +++ b/src/frameworks/CloudKit/CMakeLists.txt @@ -0,0 +1,274 @@ +project(CloudKit) + +set(DYLIB_COMPAT_VERSION "1.0.0") +set(DYLIB_CURRENT_VERSION "867.0.0") + +add_framework(CloudKit + FAT + CURRENT_VERSION + VERSION "A" + + SOURCES + src/CloudKit.m + src/CKFlowControl.m + src/CKRecordZoneID.m + src/CKRepairAssetsOperation.m + src/CKRepairAssetsOperationInfo.m + src/CKDPRecordFieldValueEncryptedValue.m + src/CKUserNotificationUtilities.m + src/CKUploadRequestPersistentStore.m + src/CKMarkAssetBrokenOperation.m + src/CKMarkAssetBrokenOperationInfo.m + src/CKLogFacilityWrapper.m + src/CKModifyRecordZonesOperation.m + src/CKModifyRecordZonesOperationInfo.m + src/CKDiscoverAllContactsOperation.m + src/CKContainerSetupInfo.m + src/CKContainerOptions.m + src/CKAccountInfo.m + src/CKContainerXPCProxy.m + src/CKContainer.m + src/CKSyncEngineBatch.m + src/CKArchiveRecordsOperation.m + src/CKArchiveRecordsOperationInfo.m + src/CKQuery.m + src/CKNotificationListener.m + src/CKSubscriptionInfo.m + src/CKRepairZonePCSOperationInfo.m + src/CKRepairZonePCSOperation.m + src/CKDPRecordReference.m + src/CKException.m + src/CKSQLitePool.m + src/CKAutoBugCaptureMetadata.m + src/CKDCancelToken.m + src/CKFetchRecordZonesOperation.m + src/CKFetchRecordZonesOperationInfo.m + src/CKScheduler.m + src/CKDiscoverAllUserIdentitiesOperation.m + src/CKZonePCSDiagnosticInformation.m + src/CKPCSDiagnosticInformation.m + src/CKFetchShareMetadataOperation.m + src/CKFetchShareMetadataOperationInfo.m + src/CKSyncingClientInfo.m + src/CKSyncRequestOperation.m + src/CKModifyWebSharingOperation.m + src/CKModifyWebSharingOperationInfo.m + src/CKContainerID.m + src/CKLegacyPredicateValidator.m + src/CKSQLite.m + src/CKSQLiteError.m + src/CKAccountOverrideInfo.m + src/CKUserIdentity.m + src/CKSyncEngine.m + src/CKFetchDatabaseChangesOperation.m + src/CKFetchDatabaseChangesOperationInfo.m + src/CKFetchDatabaseChangesOperationResult.m + src/CKOperationFlowControlInfo.m + src/CKOperationFlowControlManager.m + src/CKPackageDB.m + src/CKPackageSection.m + src/CKDPRecordZoneIdentifier.m + src/CKApplicationPermissionGroup.m + src/CKUploadRequestManager.m + src/CKUploadRequestManagerInternals.m + src/CKUploadRequestManagerResponseActionThrottlerMetadata.m + src/CKUploadRequestManagerResponseActionThrottler.m + src/CKMarkNotificationsReadOperation.m + src/CKMarkNotificationsReadOperationInfo.m + src/CKFetchArchivedRecordsOperation.m + src/CKFetchArchivedRecordsOptions.m + src/CKFetchArchivedRecordsOperationInfo.m + src/CKDPStreamingAssetFooter.m + src/CKRecordValueStore.m + src/CKEncryptedRecordValueStore.m + src/CKRecord.m + src/CKContactsSupport.m + src/CKFileOpenInfo.m + src/CKFileOpenResult.m + src/CKFileMetadata.m + src/CKAssetTransferOptions.m + src/CKAssetReuploadExpectedProperties.m + src/CKAssetCopyInfo.m + src/CKAssetRereferenceInfo.m + src/CKAssetReference.m + src/CKAsset.m + src/CKSchedulerActivity.m + src/CKDiscretionaryOptions.m + src/CKDPRecordIdentifier.m + src/CKUserIdentityLookupInfo.m + src/CKDeviceToDeviceShareInvitationToken.m + src/CKShare.m + src/CKBehaviorOptions.m + src/CKPlaceholderOperation.m + src/CKOperation.m + src/CKOperationConfiguration.m + src/CKOperationInfo.m + src/CKOperationResult.m + src/CKOperationMMCSRequestOptions.m + src/CKDatabaseOperation.m + src/CKDatabaseOperationInfo.m + src/CKObjCClass.m + src/CKAssetRepairScheduler.m + src/CKRequestAssetOperation.m + src/CKQueryOperation.m + src/CKQueryOperationInfo.m + src/CKQueryOperationResult.m + src/CKQueryCursor.m + src/CKUploadRequestManagerStateMachine.m + src/CKShareParticipant.m + src/CKDiscoveredUserInfo.m + src/CKRecordGraphNode.m + src/CKRecordGraph.m + src/CKFetchNotificationChangesOperation.m + src/CKFetchNotificationChangesOperationInfo.m + src/CKFetchNotificationChangesOperationResult.m + src/CKFetchWebAuthTokenOperation.m + src/CKFetchWebAuthTokenOperationResult.m + src/CKFetchWebAuthTokenOperationInfo.m + src/CKFetchRecordVersionsOperation.m + src/CKFetchRecordVersionsOperationInfo.m + src/CKInitiateParticipantVettingOperation.m + src/CKInitiateParticipantVettingOperationInfo.m + src/CKStreamingAssetAppendContext.m + src/CKDPDate.m + src/CKAggregateZonePCSOperation.m + src/CKAggregateZonePCSOperationInfo.m + src/CKMetric.m + src/CKOperationMetrics.m + src/CKPackageItem.m + src/CKFetchRecordChangesOperation.m + src/CKFetchRecordChangesOperationResult.m + src/CKNotificationID.m + src/CKNotification.m + src/CKQueryNotification.m + src/CKRecordZoneNotification.m + src/CKDatabaseNotification.m + src/CKDatabase.m + src/CKAcceptSharesOperation.m + src/CKAcceptSharesOperationInfo.m + src/CKReference.m + src/CKFetchShareParticipantKeyOperation.m + src/CKFetchShareParticipantKeyOperationInfo.m + src/CKAPSMachServiceConnectionKey.m + src/CKAPSMachServiceConnectionDelegate.m + src/CKOperationGroup.m + src/CKOperationGroupSystemImposedInfoConfiguration.m + src/CKOperationGroupSystemImposedInfo.m + src/CKPublicKey.m + src/CKDPLocationCoordinate.m + src/CKDPIdentifier.m + src/CKSyncEngineFetchChangesOperation.m + src/CKEncryptedData.m + src/CKEncryptedString.m + src/CKEncryptedLongLong.m + src/CKEncryptedDouble.m + src/CKEncryptedDate.m + src/CKEncryptedReference.m + src/CKEncryptedLocation.m + src/CKEncryptedStringArray.m + src/CKEncryptedDoubleArray.m + src/CKEncryptedLongLongArray.m + src/CKEncryptedDateArray.m + src/CKEncryptedLocationArray.m + src/CKEncryptedEmptyArray.m + src/CKSQLiteStatementEnumerator.m + src/CKSyncEngineModifyRecordBatchesOperation.m + src/CKObjCProperty.m + src/CKQuerySubscription.m + src/CKRecordZoneSubscription.m + src/CKDatabaseSubscription.m + src/CKSubscription.m + src/CKNotificationInfo.m + src/CKModifySubscriptionsOperation.m + src/CKModifySubscriptionsOperationInfo.m + src/CKFetchRecordZoneChangesOperation.m + src/CKFetchRecordZoneChangesOptions.m + src/CKFetchRecordZoneChangesConfiguration.m + src/CKFetchRecordZoneChangesOperationInfo.m + src/CKModifyRecordsOperation.m + src/CKModifyRecordsOperationInfo.m + src/CKAssetDownloadPreauthorization.m + src/CKSignatureGenerator.m + src/CKSQLiteStatement.m + src/CKAssetRepairOperationUtilities.m + src/CKUploadRequestConfiguration.m + src/CKPublishAssetsOperation.m + src/CKPublishAssetsOperationInfo.m + src/CKCompleteParticipantVettingOperation.m + src/CKCompleteParticipantVettingOperationInfo.m + src/CKFetchSubscriptionsOperation.m + src/CKFetchSubscriptionsOperationInfo.m + src/CKLocationSortDescriptor.m + src/CKFetchRecordsAssetInfo.m + src/CKFetchRecordsOperation.m + src/CKFetchRecordsOperationInfo.m + src/CKPredicateValidatorInstance.m + src/CKRecursivePredicateValidator.m + src/CKAnyPredicateValidator.m + src/CKAllPredicateValidator.m + src/CKCompoundTypePredicateValidator.m + src/CKTruePredicateValidator.m + src/CKCompoundSubpredicateValidator.m + src/CKFlipFlopPredicateValidator.m + src/CKComparisonPredicateValidator.m + src/CKComparisonOperatorValidator.m + src/CKComparisonModifierValidator.m + src/CKComparisonOptionsValidator.m + src/CKConstantValueExpressionValidator.m + src/CKKeyPathExpressionValidator.m + src/CKAggregateExpressionValidator.m + src/CKFunctionExpressionValidator.m + src/CKEvaluatedObjectExpressionValidator.m + src/CKKindOfClassValidator.m + src/CKKindOfCollectionClassValidator.m + src/CKStringValueValidator.m + src/CKCustomBlockValidator.m + src/CKTrueValidator.m + src/CKNilValidator.m + src/CKDeclarativePredicateValidator.m + src/CKRequestInfo.m + src/CKBlockingAsyncQueue.m + src/CKCodeFunctionInvokeOperation.m + src/CKCodeFunctionInvokeOperationInfo.m + src/CKModifyRecordAccessOperation.m + src/CKModifyRecordAccessOperationInfo.m + src/CKShareMetadata.m + src/CKDiscoverUserInfosOperation.m + src/CKPackageDBDelegate.m + src/CKPackage.m + src/CKArchivedAnchoredPackage.m + src/CKObjCType.m + src/CKModifyBadgeOperation.m + src/CKModifyBadgeOperationInfo.m + src/CKUploadRequestMetadata.m + src/CKAssetUploadRequestMetadata.m + src/CKPackageUploadRequestMetadata.m + src/CKPredicateValidator.m + src/CKPrettyError.m + src/CKInternalError.m + src/CKSyncEngineMetadata.m + src/CKSyncEngineRecordModification.m + src/CKRecordID.m + src/CKRecordZone.m + src/CKStreamingAsset.m + src/CKFetchShareParticipantsOperation.m + src/CKFetchShareParticipantsOperationInfo.m + src/CKFetchUserQuotaOperation.m + src/CKFetchUserQuotaOperationResult.m + src/CKFetchWhitelistedBundleIDsOperation.m + src/CKFetchWhitelistedBundleIDsOperationResult.m + src/CKServerChangeToken.m + src/CKEventMetric.m + src/CKEventOperationInfo.m + src/CKEventOperationGroupInfo.m + src/CKEventMetricInfo.m + src/CKOperationCallbackManager.m + src/CKObject.m + src/CKDiscoverUserIdentitiesOperation.m + src/CKDiscoverUserIdentitiesOperationInfo.m + + DEPENDENCIES + system + objc + Foundation +) diff --git a/src/frameworks/CloudKit/include/CloudKit/APSConnectionDelegate.h b/src/frameworks/CloudKit/include/CloudKit/APSConnectionDelegate.h new file mode 100644 index 000000000..23830697f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/APSConnectionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol APSConnectionDelegate + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/C2RequestDelegate.h b/src/frameworks/CloudKit/include/CloudKit/C2RequestDelegate.h new file mode 100644 index 000000000..d7215dd9c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/C2RequestDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol C2RequestDelegate + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAPSMachServiceConnectionDelegate.h b/src/frameworks/CloudKit/include/CloudKit/CKAPSMachServiceConnectionDelegate.h new file mode 100644 index 000000000..4253406c0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAPSMachServiceConnectionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAPSMachServiceConnectionDelegate : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAPSMachServiceConnectionKey.h b/src/frameworks/CloudKit/include/CloudKit/CKAPSMachServiceConnectionKey.h new file mode 100644 index 000000000..40c3053e7 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAPSMachServiceConnectionKey.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAPSMachServiceConnectionKey : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAcceptSharesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKAcceptSharesOperation.h new file mode 100644 index 000000000..0ca5ba89c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAcceptSharesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAcceptSharesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAcceptSharesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKAcceptSharesOperationInfo.h new file mode 100644 index 000000000..bf8290009 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAcceptSharesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAcceptSharesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAccountInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKAccountInfo.h new file mode 100644 index 000000000..5794a6530 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAccountInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAccountInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAccountOverrideInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKAccountOverrideInfo.h new file mode 100644 index 000000000..5f1909590 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAccountOverrideInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAccountOverrideInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAggregateExpressionValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKAggregateExpressionValidator.h new file mode 100644 index 000000000..4c20eccc3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAggregateExpressionValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAggregateExpressionValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAggregateZonePCSOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKAggregateZonePCSOperation.h new file mode 100644 index 000000000..e26323980 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAggregateZonePCSOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAggregateZonePCSOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAggregateZonePCSOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKAggregateZonePCSOperationInfo.h new file mode 100644 index 000000000..16c368226 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAggregateZonePCSOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAggregateZonePCSOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAllPredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKAllPredicateValidator.h new file mode 100644 index 000000000..aba6f0379 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAllPredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAllPredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAnyPredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKAnyPredicateValidator.h new file mode 100644 index 000000000..de980af55 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAnyPredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAnyPredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKApplicationPermissionGroup.h b/src/frameworks/CloudKit/include/CloudKit/CKApplicationPermissionGroup.h new file mode 100644 index 000000000..e3e174f85 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKApplicationPermissionGroup.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKApplicationPermissionGroup : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKArchiveRecordsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKArchiveRecordsOperation.h new file mode 100644 index 000000000..e9c824f01 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKArchiveRecordsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKArchiveRecordsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKArchiveRecordsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKArchiveRecordsOperationInfo.h new file mode 100644 index 000000000..f038e4154 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKArchiveRecordsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKArchiveRecordsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKArchivedAnchoredPackage.h b/src/frameworks/CloudKit/include/CloudKit/CKArchivedAnchoredPackage.h new file mode 100644 index 000000000..2476a1759 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKArchivedAnchoredPackage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKArchivedAnchoredPackage : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAsset.h b/src/frameworks/CloudKit/include/CloudKit/CKAsset.h new file mode 100644 index 000000000..90f9b86f0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAsset.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAsset : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetCopyInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetCopyInfo.h new file mode 100644 index 000000000..195b6dc57 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetCopyInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetCopyInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetDownloadPreauthorization.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetDownloadPreauthorization.h new file mode 100644 index 000000000..ee1454a6d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetDownloadPreauthorization.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetDownloadPreauthorization : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetReference.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetReference.h new file mode 100644 index 000000000..8894a5bba --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetReference.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetReference : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairOperationUtilities.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairOperationUtilities.h new file mode 100644 index 000000000..1eaf1df1d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairOperationUtilities.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetRepairOperationUtilities : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairScheduler.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairScheduler.h new file mode 100644 index 000000000..d883b012c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairScheduler.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetRepairScheduler : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairSchedulerDelegate.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairSchedulerDelegate.h new file mode 100644 index 000000000..4a7e75861 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetRepairSchedulerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKAssetRepairSchedulerDelegate + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetRereferenceInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetRereferenceInfo.h new file mode 100644 index 000000000..56ddb0d3d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetRereferenceInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetRereferenceInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetReuploadExpectedProperties.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetReuploadExpectedProperties.h new file mode 100644 index 000000000..a7b508d5c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetReuploadExpectedProperties.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetReuploadExpectedProperties : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetTransferOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetTransferOptions.h new file mode 100644 index 000000000..4d29576e8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetTransferOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetTransferOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAssetUploadRequestMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKAssetUploadRequestMetadata.h new file mode 100644 index 000000000..601f7cce3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAssetUploadRequestMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAssetUploadRequestMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKAutoBugCaptureMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKAutoBugCaptureMetadata.h new file mode 100644 index 000000000..7c4bfef35 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKAutoBugCaptureMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKAutoBugCaptureMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKBehaviorOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKBehaviorOptions.h new file mode 100644 index 000000000..9f39e2f7c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKBehaviorOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKBehaviorOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKBlockingAsyncQueue.h b/src/frameworks/CloudKit/include/CloudKit/CKBlockingAsyncQueue.h new file mode 100644 index 000000000..da7e01b35 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKBlockingAsyncQueue.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKBlockingAsyncQueue : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCodeFunctionInvokeOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKCodeFunctionInvokeOperation.h new file mode 100644 index 000000000..c26874776 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCodeFunctionInvokeOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCodeFunctionInvokeOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCodeFunctionInvokeOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKCodeFunctionInvokeOperationInfo.h new file mode 100644 index 000000000..e9858af96 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCodeFunctionInvokeOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCodeFunctionInvokeOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKComparisonModifierValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKComparisonModifierValidator.h new file mode 100644 index 000000000..5bb63179d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKComparisonModifierValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKComparisonModifierValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKComparisonOperatorValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKComparisonOperatorValidator.h new file mode 100644 index 000000000..358fb3e23 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKComparisonOperatorValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKComparisonOperatorValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKComparisonOptionsValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKComparisonOptionsValidator.h new file mode 100644 index 000000000..427b2dff9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKComparisonOptionsValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKComparisonOptionsValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKComparisonPredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKComparisonPredicateValidator.h new file mode 100644 index 000000000..0518f50fe --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKComparisonPredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKComparisonPredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCompleteParticipantVettingOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKCompleteParticipantVettingOperation.h new file mode 100644 index 000000000..5ce81cdf9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCompleteParticipantVettingOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCompleteParticipantVettingOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCompleteParticipantVettingOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKCompleteParticipantVettingOperationInfo.h new file mode 100644 index 000000000..5bfa490f0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCompleteParticipantVettingOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCompleteParticipantVettingOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCompoundSubpredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKCompoundSubpredicateValidator.h new file mode 100644 index 000000000..66503b800 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCompoundSubpredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCompoundSubpredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCompoundTypePredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKCompoundTypePredicateValidator.h new file mode 100644 index 000000000..7b58f3d30 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCompoundTypePredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCompoundTypePredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKConstantValueExpressionValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKConstantValueExpressionValidator.h new file mode 100644 index 000000000..0223f5a0f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKConstantValueExpressionValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKConstantValueExpressionValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKContactsSupport.h b/src/frameworks/CloudKit/include/CloudKit/CKContactsSupport.h new file mode 100644 index 000000000..31eda9520 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKContactsSupport.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKContactsSupport : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKContainer.h b/src/frameworks/CloudKit/include/CloudKit/CKContainer.h new file mode 100644 index 000000000..7de85fd08 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKContainer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKContainer : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKContainerID.h b/src/frameworks/CloudKit/include/CloudKit/CKContainerID.h new file mode 100644 index 000000000..b90967bf9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKContainerID.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKContainerID : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKContainerOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKContainerOptions.h new file mode 100644 index 000000000..6a90ad701 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKContainerOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKContainerOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKContainerSetupInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKContainerSetupInfo.h new file mode 100644 index 000000000..f9299a2e7 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKContainerSetupInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKContainerSetupInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKContainerXPCProxy.h b/src/frameworks/CloudKit/include/CloudKit/CKContainerXPCProxy.h new file mode 100644 index 000000000..16ada7cd9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKContainerXPCProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKContainerXPCProxy : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKCustomBlockValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKCustomBlockValidator.h new file mode 100644 index 000000000..aaf178a9d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKCustomBlockValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKCustomBlockValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDCancelToken.h b/src/frameworks/CloudKit/include/CloudKit/CKDCancelToken.h new file mode 100644 index 000000000..d544bbd9b --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDCancelToken.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDCancelToken : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDCancelling.h b/src/frameworks/CloudKit/include/CloudKit/CKDCancelling.h new file mode 100644 index 000000000..7bc2e4633 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDCancelling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKDCancelling + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPDate.h b/src/frameworks/CloudKit/include/CloudKit/CKDPDate.h new file mode 100644 index 000000000..91e7e7471 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPDate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPDate : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPIdentifier.h b/src/frameworks/CloudKit/include/CloudKit/CKDPIdentifier.h new file mode 100644 index 000000000..0a936acd2 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPIdentifier.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPIdentifier : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPLocationCoordinate.h b/src/frameworks/CloudKit/include/CloudKit/CKDPLocationCoordinate.h new file mode 100644 index 000000000..f104a09cd --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPLocationCoordinate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPLocationCoordinate : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPRecordFieldValueEncryptedValue.h b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordFieldValueEncryptedValue.h new file mode 100644 index 000000000..33446fa1f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordFieldValueEncryptedValue.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPRecordFieldValueEncryptedValue : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPRecordIdentifier.h b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordIdentifier.h new file mode 100644 index 000000000..71ce7e8cb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordIdentifier.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPRecordIdentifier : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPRecordReference.h b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordReference.h new file mode 100644 index 000000000..efde197af --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordReference.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPRecordReference : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPRecordZoneIdentifier.h b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordZoneIdentifier.h new file mode 100644 index 000000000..793112b8d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPRecordZoneIdentifier.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPRecordZoneIdentifier : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDPStreamingAssetFooter.h b/src/frameworks/CloudKit/include/CloudKit/CKDPStreamingAssetFooter.h new file mode 100644 index 000000000..3f04ac664 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDPStreamingAssetFooter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDPStreamingAssetFooter : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDatabase.h b/src/frameworks/CloudKit/include/CloudKit/CKDatabase.h new file mode 100644 index 000000000..412b76f07 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDatabase.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDatabase : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDatabaseNotification.h b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseNotification.h new file mode 100644 index 000000000..c12cf944a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseNotification.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDatabaseNotification : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDatabaseOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseOperation.h new file mode 100644 index 000000000..4a3edc0d6 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDatabaseOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDatabaseOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseOperationInfo.h new file mode 100644 index 000000000..3c0a13276 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDatabaseOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDatabaseSubscription.h b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseSubscription.h new file mode 100644 index 000000000..11f98d62a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDatabaseSubscription.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDatabaseSubscription : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDeclarativePredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKDeclarativePredicateValidator.h new file mode 100644 index 000000000..34a421523 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDeclarativePredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDeclarativePredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDeviceToDeviceShareInvitationToken.h b/src/frameworks/CloudKit/include/CloudKit/CKDeviceToDeviceShareInvitationToken.h new file mode 100644 index 000000000..eeb82c5e5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDeviceToDeviceShareInvitationToken.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDeviceToDeviceShareInvitationToken : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscoverAllContactsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverAllContactsOperation.h new file mode 100644 index 000000000..270bb446d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverAllContactsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscoverAllContactsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscoverAllUserIdentitiesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverAllUserIdentitiesOperation.h new file mode 100644 index 000000000..08ab2a790 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverAllUserIdentitiesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscoverAllUserIdentitiesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserIdentitiesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserIdentitiesOperation.h new file mode 100644 index 000000000..be0242be9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserIdentitiesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscoverUserIdentitiesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserIdentitiesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserIdentitiesOperationInfo.h new file mode 100644 index 000000000..050709b3e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserIdentitiesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscoverUserIdentitiesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserInfosOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserInfosOperation.h new file mode 100644 index 000000000..f36a20f2e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscoverUserInfosOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscoverUserInfosOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscoveredUserInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscoveredUserInfo.h new file mode 100644 index 000000000..f67f40a05 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscoveredUserInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscoveredUserInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKDiscretionaryOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKDiscretionaryOptions.h new file mode 100644 index 000000000..3a944ff2c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKDiscretionaryOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKDiscretionaryOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedData.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedData.h new file mode 100644 index 000000000..1d73f90ad --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedData.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedData : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDate.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDate.h new file mode 100644 index 000000000..382ed005f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedDate : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDateArray.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDateArray.h new file mode 100644 index 000000000..ff96408f2 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDateArray.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedDateArray : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDouble.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDouble.h new file mode 100644 index 000000000..dedd68fba --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDouble.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedDouble : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDoubleArray.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDoubleArray.h new file mode 100644 index 000000000..7adfe1b4b --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedDoubleArray.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedDoubleArray : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedEmptyArray.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedEmptyArray.h new file mode 100644 index 000000000..d24f45046 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedEmptyArray.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedEmptyArray : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLocation.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLocation.h new file mode 100644 index 000000000..2cf317ad8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLocation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedLocation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLocationArray.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLocationArray.h new file mode 100644 index 000000000..438505813 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLocationArray.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedLocationArray : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLongLong.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLongLong.h new file mode 100644 index 000000000..cee25aeaf --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLongLong.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedLongLong : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLongLongArray.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLongLongArray.h new file mode 100644 index 000000000..3a5345a6f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedLongLongArray.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedLongLongArray : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedRecordValueStore.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedRecordValueStore.h new file mode 100644 index 000000000..df39ca2b9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedRecordValueStore.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedRecordValueStore : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedReference.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedReference.h new file mode 100644 index 000000000..172b56c8e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedReference.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedReference : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedString.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedString.h new file mode 100644 index 000000000..3ecaa7d71 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedString.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedString : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEncryptedStringArray.h b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedStringArray.h new file mode 100644 index 000000000..4a011e698 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEncryptedStringArray.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEncryptedStringArray : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEvaluatedObjectExpressionValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKEvaluatedObjectExpressionValidator.h new file mode 100644 index 000000000..911765fc4 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEvaluatedObjectExpressionValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEvaluatedObjectExpressionValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEventMetric.h b/src/frameworks/CloudKit/include/CloudKit/CKEventMetric.h new file mode 100644 index 000000000..9e9c4d97e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEventMetric.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEventMetric : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEventMetricInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKEventMetricInfo.h new file mode 100644 index 000000000..3e39162fb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEventMetricInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEventMetricInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEventOperationGroupInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKEventOperationGroupInfo.h new file mode 100644 index 000000000..eb554b04f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEventOperationGroupInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEventOperationGroupInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKEventOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKEventOperationInfo.h new file mode 100644 index 000000000..cfcb94221 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKEventOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKEventOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKException.h b/src/frameworks/CloudKit/include/CloudKit/CKException.h new file mode 100644 index 000000000..a2b703789 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKException.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKException : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOperation.h new file mode 100644 index 000000000..5438b380f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchArchivedRecordsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOperationInfo.h new file mode 100644 index 000000000..ba89f31cd --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchArchivedRecordsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOptions.h new file mode 100644 index 000000000..878ee1640 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchArchivedRecordsOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchArchivedRecordsOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperation.h new file mode 100644 index 000000000..ce9d5ee8a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchDatabaseChangesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperationInfo.h new file mode 100644 index 000000000..a8f06c707 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchDatabaseChangesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperationResult.h new file mode 100644 index 000000000..0cdf39b84 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchDatabaseChangesOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchDatabaseChangesOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperation.h new file mode 100644 index 000000000..24f038a80 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchNotificationChangesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperationInfo.h new file mode 100644 index 000000000..5e00887d6 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchNotificationChangesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperationResult.h new file mode 100644 index 000000000..7db45db44 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchNotificationChangesOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchNotificationChangesOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordChangesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordChangesOperation.h new file mode 100644 index 000000000..2dcedf138 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordChangesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordChangesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordChangesOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordChangesOperationResult.h new file mode 100644 index 000000000..dc4d4bd69 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordChangesOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordChangesOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordVersionsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordVersionsOperation.h new file mode 100644 index 000000000..5c0d5e13a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordVersionsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordVersionsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordVersionsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordVersionsOperationInfo.h new file mode 100644 index 000000000..571561d1a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordVersionsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordVersionsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesConfiguration.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesConfiguration.h new file mode 100644 index 000000000..c8bc02c39 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesConfiguration.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordZoneChangesConfiguration : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOperation.h new file mode 100644 index 000000000..0ea447c72 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordZoneChangesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOperationInfo.h new file mode 100644 index 000000000..6f89c711b --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordZoneChangesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOptions.h new file mode 100644 index 000000000..dca33f32b --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZoneChangesOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordZoneChangesOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZonesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZonesOperation.h new file mode 100644 index 000000000..8b944ce48 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZonesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordZonesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZonesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZonesOperationInfo.h new file mode 100644 index 000000000..eccfa0468 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordZonesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordZonesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsAssetInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsAssetInfo.h new file mode 100644 index 000000000..dc98b27c2 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsAssetInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordsAssetInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsOperation.h new file mode 100644 index 000000000..5f0b70e59 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsOperationInfo.h new file mode 100644 index 000000000..67e5a9677 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchRecordsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchRecordsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchShareMetadataOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareMetadataOperation.h new file mode 100644 index 000000000..9785516c7 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareMetadataOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchShareMetadataOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchShareMetadataOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareMetadataOperationInfo.h new file mode 100644 index 000000000..fcae80797 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareMetadataOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchShareMetadataOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantKeyOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantKeyOperation.h new file mode 100644 index 000000000..3e3fbd3ac --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantKeyOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchShareParticipantKeyOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantKeyOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantKeyOperationInfo.h new file mode 100644 index 000000000..64cc8149c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantKeyOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchShareParticipantKeyOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantsOperation.h new file mode 100644 index 000000000..59f58f24c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchShareParticipantsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantsOperationInfo.h new file mode 100644 index 000000000..70ab9766c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchShareParticipantsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchShareParticipantsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchSubscriptionsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchSubscriptionsOperation.h new file mode 100644 index 000000000..a81250dd3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchSubscriptionsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchSubscriptionsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchSubscriptionsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchSubscriptionsOperationInfo.h new file mode 100644 index 000000000..50535557a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchSubscriptionsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchSubscriptionsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchUserQuotaOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchUserQuotaOperation.h new file mode 100644 index 000000000..c57d40e78 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchUserQuotaOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchUserQuotaOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchUserQuotaOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchUserQuotaOperationResult.h new file mode 100644 index 000000000..d98594018 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchUserQuotaOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchUserQuotaOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperation.h new file mode 100644 index 000000000..3ce58c02c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchWebAuthTokenOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperationInfo.h new file mode 100644 index 000000000..86fdfe312 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchWebAuthTokenOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperationResult.h new file mode 100644 index 000000000..d332cd1ca --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchWebAuthTokenOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchWebAuthTokenOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchWhitelistedBundleIDsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchWhitelistedBundleIDsOperation.h new file mode 100644 index 000000000..e4d5bf7a7 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchWhitelistedBundleIDsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchWhitelistedBundleIDsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFetchWhitelistedBundleIDsOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFetchWhitelistedBundleIDsOperationResult.h new file mode 100644 index 000000000..b52abe5ff --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFetchWhitelistedBundleIDsOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFetchWhitelistedBundleIDsOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFileMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKFileMetadata.h new file mode 100644 index 000000000..718394bc4 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFileMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFileMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFileOpenInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKFileOpenInfo.h new file mode 100644 index 000000000..8d54e75d9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFileOpenInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFileOpenInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFileOpenResult.h b/src/frameworks/CloudKit/include/CloudKit/CKFileOpenResult.h new file mode 100644 index 000000000..3b3d7ddc1 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFileOpenResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFileOpenResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFlipFlopPredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKFlipFlopPredicateValidator.h new file mode 100644 index 000000000..2f90f2e15 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFlipFlopPredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFlipFlopPredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFlowControl.h b/src/frameworks/CloudKit/include/CloudKit/CKFlowControl.h new file mode 100644 index 000000000..6bdf0e7f5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFlowControl.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFlowControl : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKFunctionExpressionValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKFunctionExpressionValidator.h new file mode 100644 index 000000000..6af4ef5a0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKFunctionExpressionValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKFunctionExpressionValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKInitiateParticipantVettingOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKInitiateParticipantVettingOperation.h new file mode 100644 index 000000000..c81dec88d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKInitiateParticipantVettingOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKInitiateParticipantVettingOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKInitiateParticipantVettingOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKInitiateParticipantVettingOperationInfo.h new file mode 100644 index 000000000..89dafc57f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKInitiateParticipantVettingOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKInitiateParticipantVettingOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKInternalError.h b/src/frameworks/CloudKit/include/CloudKit/CKInternalError.h new file mode 100644 index 000000000..abe0605b5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKInternalError.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKInternalError : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKKeyPathExpressionValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKKeyPathExpressionValidator.h new file mode 100644 index 000000000..9c718def9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKKeyPathExpressionValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKKeyPathExpressionValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKKindOfClassValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKKindOfClassValidator.h new file mode 100644 index 000000000..1f8ff2a00 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKKindOfClassValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKKindOfClassValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKKindOfCollectionClassValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKKindOfCollectionClassValidator.h new file mode 100644 index 000000000..15e27d5ff --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKKindOfCollectionClassValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKKindOfCollectionClassValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKLegacyPredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKLegacyPredicateValidator.h new file mode 100644 index 000000000..75db434a9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKLegacyPredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKLegacyPredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKLocationSortDescriptor.h b/src/frameworks/CloudKit/include/CloudKit/CKLocationSortDescriptor.h new file mode 100644 index 000000000..f84d96200 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKLocationSortDescriptor.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKLocationSortDescriptor : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKLogFacilityWrapper.h b/src/frameworks/CloudKit/include/CloudKit/CKLogFacilityWrapper.h new file mode 100644 index 000000000..b39a0cd0c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKLogFacilityWrapper.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKLogFacilityWrapper : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKMarkAssetBrokenOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKMarkAssetBrokenOperation.h new file mode 100644 index 000000000..c1a99a2a8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKMarkAssetBrokenOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKMarkAssetBrokenOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKMarkAssetBrokenOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKMarkAssetBrokenOperationInfo.h new file mode 100644 index 000000000..4c777eadb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKMarkAssetBrokenOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKMarkAssetBrokenOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKMarkNotificationsReadOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKMarkNotificationsReadOperation.h new file mode 100644 index 000000000..944c7dceb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKMarkNotificationsReadOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKMarkNotificationsReadOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKMarkNotificationsReadOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKMarkNotificationsReadOperationInfo.h new file mode 100644 index 000000000..a40b3a8ed --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKMarkNotificationsReadOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKMarkNotificationsReadOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKMetric.h b/src/frameworks/CloudKit/include/CloudKit/CKMetric.h new file mode 100644 index 000000000..62fbb19b8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKMetric.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKMetric : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyBadgeOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyBadgeOperation.h new file mode 100644 index 000000000..840b493e8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyBadgeOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyBadgeOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyBadgeOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyBadgeOperationInfo.h new file mode 100644 index 000000000..23167c069 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyBadgeOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyBadgeOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordAccessOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordAccessOperation.h new file mode 100644 index 000000000..4948e57a6 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordAccessOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyRecordAccessOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordAccessOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordAccessOperationInfo.h new file mode 100644 index 000000000..b507785d3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordAccessOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyRecordAccessOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordZonesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordZonesOperation.h new file mode 100644 index 000000000..0c94009da --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordZonesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyRecordZonesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordZonesOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordZonesOperationInfo.h new file mode 100644 index 000000000..43cda8a07 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordZonesOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyRecordZonesOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordsOperation.h new file mode 100644 index 000000000..aefe2d3b5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyRecordsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordsOperationInfo.h new file mode 100644 index 000000000..66818b8c0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyRecordsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyRecordsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifySubscriptionsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKModifySubscriptionsOperation.h new file mode 100644 index 000000000..699510044 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifySubscriptionsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifySubscriptionsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifySubscriptionsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKModifySubscriptionsOperationInfo.h new file mode 100644 index 000000000..a499a7caf --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifySubscriptionsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifySubscriptionsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyWebSharingOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyWebSharingOperation.h new file mode 100644 index 000000000..47ca28a6f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyWebSharingOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyWebSharingOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKModifyWebSharingOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKModifyWebSharingOperationInfo.h new file mode 100644 index 000000000..e521033eb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKModifyWebSharingOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKModifyWebSharingOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKNilValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKNilValidator.h new file mode 100644 index 000000000..5c342a187 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKNilValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKNilValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKNotification.h b/src/frameworks/CloudKit/include/CloudKit/CKNotification.h new file mode 100644 index 000000000..2ca56bef3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKNotification.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKNotification : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKNotificationID.h b/src/frameworks/CloudKit/include/CloudKit/CKNotificationID.h new file mode 100644 index 000000000..8222d1b59 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKNotificationID.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKNotificationID : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKNotificationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKNotificationInfo.h new file mode 100644 index 000000000..063aa1e82 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKNotificationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKNotificationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKNotificationListener.h b/src/frameworks/CloudKit/include/CloudKit/CKNotificationListener.h new file mode 100644 index 000000000..9cf494cdb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKNotificationListener.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKNotificationListener : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKObjCClass.h b/src/frameworks/CloudKit/include/CloudKit/CKObjCClass.h new file mode 100644 index 000000000..c1c009cfb --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKObjCClass.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKObjCClass : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKObjCProperty.h b/src/frameworks/CloudKit/include/CloudKit/CKObjCProperty.h new file mode 100644 index 000000000..dc7580923 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKObjCProperty.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKObjCProperty : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKObjCType.h b/src/frameworks/CloudKit/include/CloudKit/CKObjCType.h new file mode 100644 index 000000000..6866d537f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKObjCType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKObjCType : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKObject.h b/src/frameworks/CloudKit/include/CloudKit/CKObject.h new file mode 100644 index 000000000..5faa060ea --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKObject.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKObject : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKObjectValidating.h b/src/frameworks/CloudKit/include/CloudKit/CKObjectValidating.h new file mode 100644 index 000000000..f7560c1bf --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKObjectValidating.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKObjectValidating + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKOperation.h new file mode 100644 index 000000000..d145b9d07 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationCallbackManager.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationCallbackManager.h new file mode 100644 index 000000000..163e5d7ae --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationCallbackManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationCallbackManager : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationConfiguration.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationConfiguration.h new file mode 100644 index 000000000..7fe2636bf --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationConfiguration.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationConfiguration : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationFlowControlInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationFlowControlInfo.h new file mode 100644 index 000000000..8de69d4c8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationFlowControlInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationFlowControlInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationFlowControlManager.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationFlowControlManager.h new file mode 100644 index 000000000..10bf8dcb0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationFlowControlManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationFlowControlManager : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationGroup.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationGroup.h new file mode 100644 index 000000000..165b43ea2 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationGroup.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationGroup : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationGroupSystemImposedInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationGroupSystemImposedInfo.h new file mode 100644 index 000000000..b5574f815 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationGroupSystemImposedInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationGroupSystemImposedInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationGroupSystemImposedInfoConfiguration.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationGroupSystemImposedInfoConfiguration.h new file mode 100644 index 000000000..0dd93b7b1 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationGroupSystemImposedInfoConfiguration.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationGroupSystemImposedInfoConfiguration : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationInfo.h new file mode 100644 index 000000000..f7081af6d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationMMCSRequestOptions.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationMMCSRequestOptions.h new file mode 100644 index 000000000..3c33659aa --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationMMCSRequestOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationMMCSRequestOptions : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationMetrics.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationMetrics.h new file mode 100644 index 000000000..f53f76fc1 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationMetrics.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationMetrics : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKOperationResult.h new file mode 100644 index 000000000..6bdfed79d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPCSDiagnosticInformation.h b/src/frameworks/CloudKit/include/CloudKit/CKPCSDiagnosticInformation.h new file mode 100644 index 000000000..4ef2d5781 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPCSDiagnosticInformation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPCSDiagnosticInformation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPackage.h b/src/frameworks/CloudKit/include/CloudKit/CKPackage.h new file mode 100644 index 000000000..b26c2b309 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPackage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPackage : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPackageDB.h b/src/frameworks/CloudKit/include/CloudKit/CKPackageDB.h new file mode 100644 index 000000000..151d9e30e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPackageDB.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPackageDB : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPackageDBDelegate.h b/src/frameworks/CloudKit/include/CloudKit/CKPackageDBDelegate.h new file mode 100644 index 000000000..17b2b867a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPackageDBDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPackageDBDelegate : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPackageItem.h b/src/frameworks/CloudKit/include/CloudKit/CKPackageItem.h new file mode 100644 index 000000000..669fbeab9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPackageItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPackageItem : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPackageSection.h b/src/frameworks/CloudKit/include/CloudKit/CKPackageSection.h new file mode 100644 index 000000000..7e4ad0e3d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPackageSection.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPackageSection : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPackageUploadRequestMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKPackageUploadRequestMetadata.h new file mode 100644 index 000000000..85fdb17b5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPackageUploadRequestMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPackageUploadRequestMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPlaceholderOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKPlaceholderOperation.h new file mode 100644 index 000000000..5cbfb7dc3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPlaceholderOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPlaceholderOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKPredicateValidator.h new file mode 100644 index 000000000..0c6b9c933 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPredicateValidatorInstance.h b/src/frameworks/CloudKit/include/CloudKit/CKPredicateValidatorInstance.h new file mode 100644 index 000000000..d8e782182 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPredicateValidatorInstance.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPredicateValidatorInstance : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPrettyError.h b/src/frameworks/CloudKit/include/CloudKit/CKPrettyError.h new file mode 100644 index 000000000..e43e3f619 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPrettyError.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPrettyError : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPropertyCoding.h b/src/frameworks/CloudKit/include/CloudKit/CKPropertyCoding.h new file mode 100644 index 000000000..fd693e9ff --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPropertyCoding.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKPropertyCoding + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPublicKey.h b/src/frameworks/CloudKit/include/CloudKit/CKPublicKey.h new file mode 100644 index 000000000..301e78a10 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPublicKey.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPublicKey : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPublishAssetsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKPublishAssetsOperation.h new file mode 100644 index 000000000..0027f8668 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPublishAssetsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPublishAssetsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKPublishAssetsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKPublishAssetsOperationInfo.h new file mode 100644 index 000000000..c5016525d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKPublishAssetsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKPublishAssetsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQuery.h b/src/frameworks/CloudKit/include/CloudKit/CKQuery.h new file mode 100644 index 000000000..f6210b5c7 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQuery.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQuery : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQueryCursor.h b/src/frameworks/CloudKit/include/CloudKit/CKQueryCursor.h new file mode 100644 index 000000000..320de3abe --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQueryCursor.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQueryCursor : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQueryNotification.h b/src/frameworks/CloudKit/include/CloudKit/CKQueryNotification.h new file mode 100644 index 000000000..a2090d626 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQueryNotification.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQueryNotification : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQueryOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKQueryOperation.h new file mode 100644 index 000000000..e10c94e6c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQueryOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQueryOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQueryOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKQueryOperationInfo.h new file mode 100644 index 000000000..20b2977af --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQueryOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQueryOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQueryOperationResult.h b/src/frameworks/CloudKit/include/CloudKit/CKQueryOperationResult.h new file mode 100644 index 000000000..e8aff4fb3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQueryOperationResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQueryOperationResult : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKQuerySubscription.h b/src/frameworks/CloudKit/include/CloudKit/CKQuerySubscription.h new file mode 100644 index 000000000..2820cb1e2 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKQuerySubscription.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKQuerySubscription : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecord.h b/src/frameworks/CloudKit/include/CloudKit/CKRecord.h new file mode 100644 index 000000000..db4ae1417 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecord.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecord : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordGraph.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordGraph.h new file mode 100644 index 000000000..6881882f3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordGraph.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordGraph : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordGraphNode.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordGraphNode.h new file mode 100644 index 000000000..38d9fe75c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordGraphNode.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordGraphNode : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordID.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordID.h new file mode 100644 index 000000000..e64e33d60 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordID.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordID : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordKeyValueSetting.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordKeyValueSetting.h new file mode 100644 index 000000000..490201ed8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordKeyValueSetting.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKRecordKeyValueSetting + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordValue.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordValue.h new file mode 100644 index 000000000..f6c423683 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordValue.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKRecordValue + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordValueStore.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordValueStore.h new file mode 100644 index 000000000..e39a3299e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordValueStore.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordValueStore : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordZone.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordZone.h new file mode 100644 index 000000000..e996ffed4 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordZone.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordZone : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneID.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneID.h new file mode 100644 index 000000000..d25648f4c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneID.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordZoneID : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneNotification.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneNotification.h new file mode 100644 index 000000000..0411fcfc5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneNotification.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordZoneNotification : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneSubscription.h b/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneSubscription.h new file mode 100644 index 000000000..dcbfc6ea0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecordZoneSubscription.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecordZoneSubscription : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRecursivePredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKRecursivePredicateValidator.h new file mode 100644 index 000000000..88fa735e1 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRecursivePredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRecursivePredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKReference.h b/src/frameworks/CloudKit/include/CloudKit/CKReference.h new file mode 100644 index 000000000..0f1fc24c5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKReference.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKReference : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRepairAssetsOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKRepairAssetsOperation.h new file mode 100644 index 000000000..12f0e9958 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRepairAssetsOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRepairAssetsOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRepairAssetsOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKRepairAssetsOperationInfo.h new file mode 100644 index 000000000..5ace335df --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRepairAssetsOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRepairAssetsOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRepairZonePCSOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKRepairZonePCSOperation.h new file mode 100644 index 000000000..88766acb9 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRepairZonePCSOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRepairZonePCSOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRepairZonePCSOperationInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKRepairZonePCSOperationInfo.h new file mode 100644 index 000000000..1a24b561f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRepairZonePCSOperationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRepairZonePCSOperationInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRequestAssetOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKRequestAssetOperation.h new file mode 100644 index 000000000..9c5c36485 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRequestAssetOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRequestAssetOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKRequestInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKRequestInfo.h new file mode 100644 index 000000000..02faa07d6 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKRequestInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKRequestInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLite.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLite.h new file mode 100644 index 000000000..9fea00f78 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLite.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSQLite : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLiteDelegate.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteDelegate.h new file mode 100644 index 000000000..a516c4e8c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKSQLiteDelegate + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLiteError.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteError.h new file mode 100644 index 000000000..9918e4351 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteError.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSQLiteError : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLiteItem.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteItem.h new file mode 100644 index 000000000..c3a309de0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKSQLiteItem + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLitePool.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLitePool.h new file mode 100644 index 000000000..29ff5f20d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLitePool.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSQLitePool : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLiteStatement.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteStatement.h new file mode 100644 index 000000000..64d820573 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteStatement.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSQLiteStatement : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSQLiteStatementEnumerator.h b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteStatementEnumerator.h new file mode 100644 index 000000000..19472270a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSQLiteStatementEnumerator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSQLiteStatementEnumerator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKScheduler.h b/src/frameworks/CloudKit/include/CloudKit/CKScheduler.h new file mode 100644 index 000000000..32ae55e51 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKScheduler.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKScheduler : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSchedulerActivity.h b/src/frameworks/CloudKit/include/CloudKit/CKSchedulerActivity.h new file mode 100644 index 000000000..4219ff18a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSchedulerActivity.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSchedulerActivity : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKServerChangeToken.h b/src/frameworks/CloudKit/include/CloudKit/CKServerChangeToken.h new file mode 100644 index 000000000..8ea899976 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKServerChangeToken.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKServerChangeToken : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKShare.h b/src/frameworks/CloudKit/include/CloudKit/CKShare.h new file mode 100644 index 000000000..acc30324a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKShare.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKShare : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKShareMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKShareMetadata.h new file mode 100644 index 000000000..10ad2e847 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKShareMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKShareMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKShareParticipant.h b/src/frameworks/CloudKit/include/CloudKit/CKShareParticipant.h new file mode 100644 index 000000000..42ade1e2f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKShareParticipant.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKShareParticipant : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKShortDescription.h b/src/frameworks/CloudKit/include/CloudKit/CKShortDescription.h new file mode 100644 index 000000000..12d110006 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKShortDescription.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKShortDescription + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSignatureGenerator.h b/src/frameworks/CloudKit/include/CloudKit/CKSignatureGenerator.h new file mode 100644 index 000000000..85d1576c4 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSignatureGenerator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSignatureGenerator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKStreamingAsset.h b/src/frameworks/CloudKit/include/CloudKit/CKStreamingAsset.h new file mode 100644 index 000000000..2aadcd020 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKStreamingAsset.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKStreamingAsset : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKStreamingAssetAppendContext.h b/src/frameworks/CloudKit/include/CloudKit/CKStreamingAssetAppendContext.h new file mode 100644 index 000000000..108722633 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKStreamingAssetAppendContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKStreamingAssetAppendContext : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKStringValueValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKStringValueValidator.h new file mode 100644 index 000000000..59d98ecaa --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKStringValueValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKStringValueValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSubscription.h b/src/frameworks/CloudKit/include/CloudKit/CKSubscription.h new file mode 100644 index 000000000..6ec7cd2b3 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSubscription.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSubscription : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSubscriptionInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKSubscriptionInfo.h new file mode 100644 index 000000000..32844b825 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSubscriptionInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSubscriptionInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngine.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngine.h new file mode 100644 index 000000000..84b77c306 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngine.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncEngine : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineBatch.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineBatch.h new file mode 100644 index 000000000..8b4ade38d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineBatch.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncEngineBatch : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineDataSource.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineDataSource.h new file mode 100644 index 000000000..da1409722 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineDataSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKSyncEngineDataSource + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineDataSourcePrivate.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineDataSourcePrivate.h new file mode 100644 index 000000000..a6a4e53c2 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineDataSourcePrivate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKSyncEngineDataSourcePrivate + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineFetchChangesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineFetchChangesOperation.h new file mode 100644 index 000000000..7013523e1 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineFetchChangesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncEngineFetchChangesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineMetadata.h new file mode 100644 index 000000000..8de668f15 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncEngineMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineModifyRecordBatchesOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineModifyRecordBatchesOperation.h new file mode 100644 index 000000000..1ccbd954c --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineModifyRecordBatchesOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncEngineModifyRecordBatchesOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineRecordModification.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineRecordModification.h new file mode 100644 index 000000000..9861b8e60 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncEngineRecordModification.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncEngineRecordModification : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncRequestOperation.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncRequestOperation.h new file mode 100644 index 000000000..2daa3d80e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncRequestOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncRequestOperation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKSyncingClientInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKSyncingClientInfo.h new file mode 100644 index 000000000..5ad32b8b8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKSyncingClientInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKSyncingClientInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKTruePredicateValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKTruePredicateValidator.h new file mode 100644 index 000000000..7340aac60 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKTruePredicateValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKTruePredicateValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKTrueValidator.h b/src/frameworks/CloudKit/include/CloudKit/CKTrueValidator.h new file mode 100644 index 000000000..c75d7dd31 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKTrueValidator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKTrueValidator : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestConfiguration.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestConfiguration.h new file mode 100644 index 000000000..ea03d193b --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestConfiguration.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestConfiguration : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManager.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManager.h new file mode 100644 index 000000000..05d7f8a31 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestManager : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerInternals.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerInternals.h new file mode 100644 index 000000000..43a91650a --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerInternals.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestManagerInternals : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerResponseActionThrottler.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerResponseActionThrottler.h new file mode 100644 index 000000000..02bbcf000 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerResponseActionThrottler.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestManagerResponseActionThrottler : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerResponseActionThrottlerMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerResponseActionThrottlerMetadata.h new file mode 100644 index 000000000..716a3aa6e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerResponseActionThrottlerMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestManagerResponseActionThrottlerMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerStateMachine.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerStateMachine.h new file mode 100644 index 000000000..393d62a8d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestManagerStateMachine.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestManagerStateMachine : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestMetadata.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestMetadata.h new file mode 100644 index 000000000..cc4fa2aa0 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestMetadata : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestPersistentStore.h b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestPersistentStore.h new file mode 100644 index 000000000..640fcdcba --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUploadRequestPersistentStore.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUploadRequestPersistentStore : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUserIdentity.h b/src/frameworks/CloudKit/include/CloudKit/CKUserIdentity.h new file mode 100644 index 000000000..c598de8ea --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUserIdentity.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUserIdentity : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUserIdentityLookupInfo.h b/src/frameworks/CloudKit/include/CloudKit/CKUserIdentityLookupInfo.h new file mode 100644 index 000000000..025583e47 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUserIdentityLookupInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUserIdentityLookupInfo : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKUserNotificationUtilities.h b/src/frameworks/CloudKit/include/CloudKit/CKUserNotificationUtilities.h new file mode 100644 index 000000000..6f1ea6016 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKUserNotificationUtilities.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKUserNotificationUtilities : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKXPCClient.h b/src/frameworks/CloudKit/include/CloudKit/CKXPCClient.h new file mode 100644 index 000000000..6bb971f6d --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKXPCClient.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKXPCClient + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKXPCDaemon.h b/src/frameworks/CloudKit/include/CloudKit/CKXPCDaemon.h new file mode 100644 index 000000000..7d60072d8 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKXPCDaemon.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKXPCDaemon + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKXPCDiscretionaryClient.h b/src/frameworks/CloudKit/include/CloudKit/CKXPCDiscretionaryClient.h new file mode 100644 index 000000000..4f8dee7bf --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKXPCDiscretionaryClient.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKXPCDiscretionaryClient + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKXPCDiscretionaryDaemon.h b/src/frameworks/CloudKit/include/CloudKit/CKXPCDiscretionaryDaemon.h new file mode 100644 index 000000000..3067327f5 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKXPCDiscretionaryDaemon.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKXPCDiscretionaryDaemon + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKXPCSuitableString.h b/src/frameworks/CloudKit/include/CloudKit/CKXPCSuitableString.h new file mode 100644 index 000000000..c4e4b1e2f --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKXPCSuitableString.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol CKXPCSuitableString + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CKZonePCSDiagnosticInformation.h b/src/frameworks/CloudKit/include/CloudKit/CKZonePCSDiagnosticInformation.h new file mode 100644 index 000000000..0dc2d882e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CKZonePCSDiagnosticInformation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@interface CKZonePCSDiagnosticInformation : NSObject + +@end diff --git a/src/frameworks/CloudKit/include/CloudKit/CloudKit.h b/src/frameworks/CloudKit/include/CloudKit/CloudKit.h new file mode 100644 index 000000000..bda8de715 --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/CloudKit.h @@ -0,0 +1,439 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + + +#ifndef _CloudKit_H_ +#define _CloudKit_H_ + +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +void* CKAbsoluteHostTime(void); +void* CKAcceptablePredicateValueClasses(void); +void* CKAcceptableValueClasses(void); +void* CKAllClientEntitlementKeys(void); +void* CKAppIdentifierFromTeamAppTuple(void); +void* CKAutoBugCaptureReasonToString(void); +void* CKBoolFromCKTernary(void); +void* CKBuildVersion(void); +void* CKCFArrayForEach(void); +void* CKCFDictionaryForEach(void); +void* CKCanRetryForError(void); +void* CKContainerEnvironmentFromString(void); +void* CKContainerEnvironmentString(void); +void* CKContainerIdentifierIsAppleInternal(void); +void* CKCreateDirectoryAtPath(void); +void* CKCreateDirectoryAtPathWithAttributes(void); +void* CKCreateGUID(void); +void* CKCurrentProcessIsDaemon(void); +void* CKCurrentQueueIsMainQueue(void); +void* CKCurrentQueueQualityOfService(void); +void* CKCurrentThreadQualityOfService(void); +void* CKDPDateReadFrom(void); +void* CKDPIdentifierReadFrom(void); +void* CKDPLocationCoordinateReadFrom(void); +void* CKDPRecordFieldValueEncryptedValueReadFrom(void); +void* CKDPRecordIdentifierReadFrom(void); +void* CKDPRecordReferenceReadFrom(void); +void* CKDPRecordZoneIdentifierReadFrom(void); +void* CKDatabaseScopeFromString(void); +void* CKDatabaseScopeString(void); +void* CKDatasAreBothNilOrEqual(void); +void* CKDeviceID(void); +void* CKEarliestStartDateAfterError(void); +void* CKErrorChainFromError(void); +void* CKErrorChainStringFromError(void); +void* CKErrorCodeForInternalErrorCode(void); +void* CKErrorCodeForNSURLErrorCode(void); +void* CKErrorIsCode(void); +void* CKFetchAPSEnvironmentFromServerOrEntitlements(void); +void* CKGetCurrentActivities(void); +void* CKGetGlobalQueue(void); +void* CKGetHomeDir(void); +void* CKGetHomeDirRealPath(void); +void* CKGetRealPath(void); +void* CKHexCharFromBytes(void); +void* CKIndexedArrayKey(void); +void* CKIsPCSError(void); +void* CKIsRunningInCloudD(void); +void* CKIsRunningInTestHost(void); +void* CKIsValidOperationForScope(void); +void* CKLinkCheck0fd6bdf95f2efb6e65813fd4cd0f5d9af656d08a(void); +void* CKLinkCheck5dbf91c3fd1d871f0bcfe60afeb451e3e708d350(void); +void* CKLinkCheck908c3403f5370f9fc0f790c790ce4de0669132c0(void); +void* CKLinkCheck92e3e8f8ec1a906754afb22d87eb36301b4f6760(void); +void* CKMainBundleIsAppleExecutable(void); +void* CKNSIndexSet_enumerateInverseRangesInRange_options_usingBlock(void); +void* CKNSIndexSet_indexSetWithInverseIndexSet(void); +void* CKNSQualityOfServiceFromQoSClass(void); +void* CKOperationGroupTransferSizeForBytes(void); +void* CKOperationLoggableProgressArguments(void); +void* CKOperationProgressCallbackClasses(void); +void* CKPIDIsStillAlive(void); +void* CKProcessIndexedArrayKey(void); +void* CKProductName(void); +void* CKProductType(void); +void* CKProductVersion(void); +void* CKQoSClassFromNSQualityOfService(void); +void* CKQoSIsBackground(void); +void* CKQualityOfServiceOrdering(void); +void* CKRetryAfterSecondsForError(void); +void* CKSDKVersion(void); +void* CKSQLiteJournalSuffixes(void); +void* CKServerEnvironmentFromString(void); +void* CKShareURLSlugForiWorkShareTitle(void); +void* CKSharingContainerSlugForContainerID(void); +void* CKShortRandomID(void); +void* CKShouldUseNewPredicateValidation(void); +void* CKShouldWrapErrorFetchingRecords(void); +void* CKStringForDiscretionaryNetworkBehavior(void); +void* CKStringForNetworkServiceType(void); +void* CKStringForQOS(void); +void* CKStringForTransferSize(void); +void* CKStringForXPCActivityState(void); +void* CKStringFromAccountChangeType(void); +void* CKStringFromAccountStatus(void); +void* CKStringFromApplicationPermissionStatus(void); +void* CKStringFromCKMMCSEncryptionSupport(void); +void* CKStringFromCapabilities(void); +void* CKStringFromDeviceToDeviceEncryptionStatus(void); +void* CKStringFromParticipantAcceptanceStatus(void); +void* CKStringFromParticipantInvitationTokenStatus(void); +void* CKStringFromParticipantPermission(void); +void* CKStringFromParticipantRole(void); +void* CKStringFromPartition(void); +void* CKStringFromServerEnvironment(void); +void* CKStringFromShareParticipantVisibility(void); +void* CKStringWithArray(void); +void* CKStringWithBytes(void); +void* CKStringWithData(void); +void* CKStringWithDate(void); +void* CKStringWithDictionary(void); +void* CKStringWithLimitedArray(void); +void* CKStringWithNibbles(void); +void* CKStringWithObject(void); +void* CKStringWithSet(void); +void* CKStringsAreBothNilOrEqual(void); +void* CKSyncEngineRecordModificationTypeOpposite(void); +void* CKTabIndentAtDepth(void); +void* CKTernaryFromBOOL(void); +void* CKTopLevelUnderlyingErrorCodes(void); +void* CKTriggerAutoBugCaptureWithFormatSignature(void); +void* CKTriggerClientSideAutoBugCaptureWithFormatSignature(void); +void* CKValidSharingURLHostnames(void); +void* CKValidateIndexedArrayKeys(void); +void* CKValidateKeyName(void); +void* CKValidateRecordArrayValue(void); +void* CKValueIsAcceptableClass(void); +void* CKValueIsAcceptablePredicateClass(void); +void* CKWarnForIncorrectServiceIdentity(void); +void* CKWarnForInvalidApplicationIdentifier(void); +void* CKWeakLinkClass(void); +void* CKWeakLinkSymbol(void); +void* CKXPCSuitableError(void); +void* NSTimeIntervalToClosestXPCActivityInterval(void); +void* _CKCheckArgument(void); +void* _CKSimulateCrash(void); +void* ck_call_or_dispatch_async_if_not_key(void); +void* ck_call_or_dispatch_sync_if_not_key(void); +void* ck_log_asl_level_to_type(void); +void* ck_log_facilities_initailize_static(void); +void* ck_log_get_asl_level(void); +void* mmapFileAtPath(void); +void* mmapFileDescriptor(void); +void* setCKIsRunningInCloudD(void); +void* setCKIsRunningInTestHost(void); +void* stringForCKErrorCode(void); + +#endif diff --git a/src/frameworks/CloudKit/include/CloudKit/PKPushRegistryDelegate.h b/src/frameworks/CloudKit/include/CloudKit/PKPushRegistryDelegate.h new file mode 100644 index 000000000..beb0c166e --- /dev/null +++ b/src/frameworks/CloudKit/include/CloudKit/PKPushRegistryDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#include + +@protocol PKPushRegistryDelegate + +@end diff --git a/src/frameworks/CloudKit/src/CKAPSMachServiceConnectionDelegate.m b/src/frameworks/CloudKit/src/CKAPSMachServiceConnectionDelegate.m new file mode 100644 index 000000000..0d89f0e60 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAPSMachServiceConnectionDelegate.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAPSMachServiceConnectionDelegate + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAPSMachServiceConnectionKey.m b/src/frameworks/CloudKit/src/CKAPSMachServiceConnectionKey.m new file mode 100644 index 000000000..c5aa4c654 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAPSMachServiceConnectionKey.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAPSMachServiceConnectionKey + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAcceptSharesOperation.m b/src/frameworks/CloudKit/src/CKAcceptSharesOperation.m new file mode 100644 index 000000000..617ceb349 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAcceptSharesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAcceptSharesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAcceptSharesOperationInfo.m b/src/frameworks/CloudKit/src/CKAcceptSharesOperationInfo.m new file mode 100644 index 000000000..663a51e90 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAcceptSharesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAcceptSharesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAccountInfo.m b/src/frameworks/CloudKit/src/CKAccountInfo.m new file mode 100644 index 000000000..e97758efa --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAccountInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAccountInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAccountOverrideInfo.m b/src/frameworks/CloudKit/src/CKAccountOverrideInfo.m new file mode 100644 index 000000000..9ffb92ca0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAccountOverrideInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAccountOverrideInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAggregateExpressionValidator.m b/src/frameworks/CloudKit/src/CKAggregateExpressionValidator.m new file mode 100644 index 000000000..317e87f73 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAggregateExpressionValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAggregateExpressionValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAggregateZonePCSOperation.m b/src/frameworks/CloudKit/src/CKAggregateZonePCSOperation.m new file mode 100644 index 000000000..19cb2b472 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAggregateZonePCSOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAggregateZonePCSOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAggregateZonePCSOperationInfo.m b/src/frameworks/CloudKit/src/CKAggregateZonePCSOperationInfo.m new file mode 100644 index 000000000..0affd1e1e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAggregateZonePCSOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAggregateZonePCSOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAllPredicateValidator.m b/src/frameworks/CloudKit/src/CKAllPredicateValidator.m new file mode 100644 index 000000000..74ff8c80d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAllPredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAllPredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAnyPredicateValidator.m b/src/frameworks/CloudKit/src/CKAnyPredicateValidator.m new file mode 100644 index 000000000..f4d0a1635 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAnyPredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAnyPredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKApplicationPermissionGroup.m b/src/frameworks/CloudKit/src/CKApplicationPermissionGroup.m new file mode 100644 index 000000000..ab759c428 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKApplicationPermissionGroup.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKApplicationPermissionGroup + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKArchiveRecordsOperation.m b/src/frameworks/CloudKit/src/CKArchiveRecordsOperation.m new file mode 100644 index 000000000..84a2eaee1 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKArchiveRecordsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKArchiveRecordsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKArchiveRecordsOperationInfo.m b/src/frameworks/CloudKit/src/CKArchiveRecordsOperationInfo.m new file mode 100644 index 000000000..ba69a5d34 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKArchiveRecordsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKArchiveRecordsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKArchivedAnchoredPackage.m b/src/frameworks/CloudKit/src/CKArchivedAnchoredPackage.m new file mode 100644 index 000000000..dde09ac66 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKArchivedAnchoredPackage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKArchivedAnchoredPackage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAsset.m b/src/frameworks/CloudKit/src/CKAsset.m new file mode 100644 index 000000000..7ea6ebd12 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAsset.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAsset + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetCopyInfo.m b/src/frameworks/CloudKit/src/CKAssetCopyInfo.m new file mode 100644 index 000000000..7681a2120 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetCopyInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetCopyInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetDownloadPreauthorization.m b/src/frameworks/CloudKit/src/CKAssetDownloadPreauthorization.m new file mode 100644 index 000000000..81f9ceeff --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetDownloadPreauthorization.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetDownloadPreauthorization + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetReference.m b/src/frameworks/CloudKit/src/CKAssetReference.m new file mode 100644 index 000000000..24f594f54 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetReference.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetReference + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetRepairOperationUtilities.m b/src/frameworks/CloudKit/src/CKAssetRepairOperationUtilities.m new file mode 100644 index 000000000..47bce8dbb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetRepairOperationUtilities.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetRepairOperationUtilities + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetRepairScheduler.m b/src/frameworks/CloudKit/src/CKAssetRepairScheduler.m new file mode 100644 index 000000000..96c067daf --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetRepairScheduler.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetRepairScheduler + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetRereferenceInfo.m b/src/frameworks/CloudKit/src/CKAssetRereferenceInfo.m new file mode 100644 index 000000000..3881ce9f3 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetRereferenceInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetRereferenceInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetReuploadExpectedProperties.m b/src/frameworks/CloudKit/src/CKAssetReuploadExpectedProperties.m new file mode 100644 index 000000000..8a1204ec0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetReuploadExpectedProperties.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetReuploadExpectedProperties + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetTransferOptions.m b/src/frameworks/CloudKit/src/CKAssetTransferOptions.m new file mode 100644 index 000000000..061ab90b1 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetTransferOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetTransferOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAssetUploadRequestMetadata.m b/src/frameworks/CloudKit/src/CKAssetUploadRequestMetadata.m new file mode 100644 index 000000000..cc1fda670 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAssetUploadRequestMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAssetUploadRequestMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKAutoBugCaptureMetadata.m b/src/frameworks/CloudKit/src/CKAutoBugCaptureMetadata.m new file mode 100644 index 000000000..2a908e988 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKAutoBugCaptureMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKAutoBugCaptureMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKBehaviorOptions.m b/src/frameworks/CloudKit/src/CKBehaviorOptions.m new file mode 100644 index 000000000..f82b88d7d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKBehaviorOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKBehaviorOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKBlockingAsyncQueue.m b/src/frameworks/CloudKit/src/CKBlockingAsyncQueue.m new file mode 100644 index 000000000..9662a29ff --- /dev/null +++ b/src/frameworks/CloudKit/src/CKBlockingAsyncQueue.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKBlockingAsyncQueue + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCodeFunctionInvokeOperation.m b/src/frameworks/CloudKit/src/CKCodeFunctionInvokeOperation.m new file mode 100644 index 000000000..49649efae --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCodeFunctionInvokeOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCodeFunctionInvokeOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCodeFunctionInvokeOperationInfo.m b/src/frameworks/CloudKit/src/CKCodeFunctionInvokeOperationInfo.m new file mode 100644 index 000000000..ea212eaec --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCodeFunctionInvokeOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCodeFunctionInvokeOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKComparisonModifierValidator.m b/src/frameworks/CloudKit/src/CKComparisonModifierValidator.m new file mode 100644 index 000000000..7a00069ad --- /dev/null +++ b/src/frameworks/CloudKit/src/CKComparisonModifierValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKComparisonModifierValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKComparisonOperatorValidator.m b/src/frameworks/CloudKit/src/CKComparisonOperatorValidator.m new file mode 100644 index 000000000..0b6f6422e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKComparisonOperatorValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKComparisonOperatorValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKComparisonOptionsValidator.m b/src/frameworks/CloudKit/src/CKComparisonOptionsValidator.m new file mode 100644 index 000000000..5e2c52fdd --- /dev/null +++ b/src/frameworks/CloudKit/src/CKComparisonOptionsValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKComparisonOptionsValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKComparisonPredicateValidator.m b/src/frameworks/CloudKit/src/CKComparisonPredicateValidator.m new file mode 100644 index 000000000..227ff8445 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKComparisonPredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKComparisonPredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCompleteParticipantVettingOperation.m b/src/frameworks/CloudKit/src/CKCompleteParticipantVettingOperation.m new file mode 100644 index 000000000..bee5683a0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCompleteParticipantVettingOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCompleteParticipantVettingOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCompleteParticipantVettingOperationInfo.m b/src/frameworks/CloudKit/src/CKCompleteParticipantVettingOperationInfo.m new file mode 100644 index 000000000..21974c4f0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCompleteParticipantVettingOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCompleteParticipantVettingOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCompoundSubpredicateValidator.m b/src/frameworks/CloudKit/src/CKCompoundSubpredicateValidator.m new file mode 100644 index 000000000..b169eb205 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCompoundSubpredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCompoundSubpredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCompoundTypePredicateValidator.m b/src/frameworks/CloudKit/src/CKCompoundTypePredicateValidator.m new file mode 100644 index 000000000..11ae53d50 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCompoundTypePredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCompoundTypePredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKConstantValueExpressionValidator.m b/src/frameworks/CloudKit/src/CKConstantValueExpressionValidator.m new file mode 100644 index 000000000..3f98593c9 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKConstantValueExpressionValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKConstantValueExpressionValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKContactsSupport.m b/src/frameworks/CloudKit/src/CKContactsSupport.m new file mode 100644 index 000000000..93eea15a8 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKContactsSupport.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKContactsSupport + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKContainer.m b/src/frameworks/CloudKit/src/CKContainer.m new file mode 100644 index 000000000..218767b39 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKContainer.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKContainer + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKContainerID.m b/src/frameworks/CloudKit/src/CKContainerID.m new file mode 100644 index 000000000..a2ff536a4 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKContainerID.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKContainerID + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKContainerOptions.m b/src/frameworks/CloudKit/src/CKContainerOptions.m new file mode 100644 index 000000000..f4a029b52 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKContainerOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKContainerOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKContainerSetupInfo.m b/src/frameworks/CloudKit/src/CKContainerSetupInfo.m new file mode 100644 index 000000000..39db672f6 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKContainerSetupInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKContainerSetupInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKContainerXPCProxy.m b/src/frameworks/CloudKit/src/CKContainerXPCProxy.m new file mode 100644 index 000000000..5b052a6ca --- /dev/null +++ b/src/frameworks/CloudKit/src/CKContainerXPCProxy.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKContainerXPCProxy + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKCustomBlockValidator.m b/src/frameworks/CloudKit/src/CKCustomBlockValidator.m new file mode 100644 index 000000000..e506e4a2e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKCustomBlockValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKCustomBlockValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDCancelToken.m b/src/frameworks/CloudKit/src/CKDCancelToken.m new file mode 100644 index 000000000..fb31dd1bb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDCancelToken.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDCancelToken + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPDate.m b/src/frameworks/CloudKit/src/CKDPDate.m new file mode 100644 index 000000000..ccb0e33d4 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPDate.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPDate + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPIdentifier.m b/src/frameworks/CloudKit/src/CKDPIdentifier.m new file mode 100644 index 000000000..b7db93f75 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPIdentifier.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPIdentifier + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPLocationCoordinate.m b/src/frameworks/CloudKit/src/CKDPLocationCoordinate.m new file mode 100644 index 000000000..1a735aa0a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPLocationCoordinate.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPLocationCoordinate + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPRecordFieldValueEncryptedValue.m b/src/frameworks/CloudKit/src/CKDPRecordFieldValueEncryptedValue.m new file mode 100644 index 000000000..2ee465d56 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPRecordFieldValueEncryptedValue.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPRecordFieldValueEncryptedValue + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPRecordIdentifier.m b/src/frameworks/CloudKit/src/CKDPRecordIdentifier.m new file mode 100644 index 000000000..1a2e5dd48 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPRecordIdentifier.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPRecordIdentifier + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPRecordReference.m b/src/frameworks/CloudKit/src/CKDPRecordReference.m new file mode 100644 index 000000000..246578c6f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPRecordReference.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPRecordReference + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPRecordZoneIdentifier.m b/src/frameworks/CloudKit/src/CKDPRecordZoneIdentifier.m new file mode 100644 index 000000000..3b0920c6c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPRecordZoneIdentifier.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPRecordZoneIdentifier + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDPStreamingAssetFooter.m b/src/frameworks/CloudKit/src/CKDPStreamingAssetFooter.m new file mode 100644 index 000000000..6e2d9071c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDPStreamingAssetFooter.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDPStreamingAssetFooter + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDatabase.m b/src/frameworks/CloudKit/src/CKDatabase.m new file mode 100644 index 000000000..1a4385e1d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDatabase.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDatabase + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDatabaseNotification.m b/src/frameworks/CloudKit/src/CKDatabaseNotification.m new file mode 100644 index 000000000..307834f74 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDatabaseNotification.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDatabaseNotification + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDatabaseOperation.m b/src/frameworks/CloudKit/src/CKDatabaseOperation.m new file mode 100644 index 000000000..48db17c6a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDatabaseOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDatabaseOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDatabaseOperationInfo.m b/src/frameworks/CloudKit/src/CKDatabaseOperationInfo.m new file mode 100644 index 000000000..ec86cda33 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDatabaseOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDatabaseOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDatabaseSubscription.m b/src/frameworks/CloudKit/src/CKDatabaseSubscription.m new file mode 100644 index 000000000..330be8433 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDatabaseSubscription.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDatabaseSubscription + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDeclarativePredicateValidator.m b/src/frameworks/CloudKit/src/CKDeclarativePredicateValidator.m new file mode 100644 index 000000000..1e9c4f874 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDeclarativePredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDeclarativePredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDeviceToDeviceShareInvitationToken.m b/src/frameworks/CloudKit/src/CKDeviceToDeviceShareInvitationToken.m new file mode 100644 index 000000000..0f6d5ca71 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDeviceToDeviceShareInvitationToken.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDeviceToDeviceShareInvitationToken + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscoverAllContactsOperation.m b/src/frameworks/CloudKit/src/CKDiscoverAllContactsOperation.m new file mode 100644 index 000000000..79c575124 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscoverAllContactsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscoverAllContactsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscoverAllUserIdentitiesOperation.m b/src/frameworks/CloudKit/src/CKDiscoverAllUserIdentitiesOperation.m new file mode 100644 index 000000000..64faecd98 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscoverAllUserIdentitiesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscoverAllUserIdentitiesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscoverUserIdentitiesOperation.m b/src/frameworks/CloudKit/src/CKDiscoverUserIdentitiesOperation.m new file mode 100644 index 000000000..8463556dc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscoverUserIdentitiesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscoverUserIdentitiesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscoverUserIdentitiesOperationInfo.m b/src/frameworks/CloudKit/src/CKDiscoverUserIdentitiesOperationInfo.m new file mode 100644 index 000000000..e57aa2f79 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscoverUserIdentitiesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscoverUserIdentitiesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscoverUserInfosOperation.m b/src/frameworks/CloudKit/src/CKDiscoverUserInfosOperation.m new file mode 100644 index 000000000..fabdd2f06 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscoverUserInfosOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscoverUserInfosOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscoveredUserInfo.m b/src/frameworks/CloudKit/src/CKDiscoveredUserInfo.m new file mode 100644 index 000000000..89b1227d3 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscoveredUserInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscoveredUserInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKDiscretionaryOptions.m b/src/frameworks/CloudKit/src/CKDiscretionaryOptions.m new file mode 100644 index 000000000..451e69351 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKDiscretionaryOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKDiscretionaryOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedData.m b/src/frameworks/CloudKit/src/CKEncryptedData.m new file mode 100644 index 000000000..4571ece9b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedData.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedData + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedDate.m b/src/frameworks/CloudKit/src/CKEncryptedDate.m new file mode 100644 index 000000000..d7b468df3 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedDate.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedDate + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedDateArray.m b/src/frameworks/CloudKit/src/CKEncryptedDateArray.m new file mode 100644 index 000000000..7d340771b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedDateArray.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedDateArray + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedDouble.m b/src/frameworks/CloudKit/src/CKEncryptedDouble.m new file mode 100644 index 000000000..88720e522 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedDouble.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedDouble + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedDoubleArray.m b/src/frameworks/CloudKit/src/CKEncryptedDoubleArray.m new file mode 100644 index 000000000..82f67d136 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedDoubleArray.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedDoubleArray + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedEmptyArray.m b/src/frameworks/CloudKit/src/CKEncryptedEmptyArray.m new file mode 100644 index 000000000..cf4b5d7fb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedEmptyArray.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedEmptyArray + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedLocation.m b/src/frameworks/CloudKit/src/CKEncryptedLocation.m new file mode 100644 index 000000000..107a99a39 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedLocation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedLocation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedLocationArray.m b/src/frameworks/CloudKit/src/CKEncryptedLocationArray.m new file mode 100644 index 000000000..5d42270df --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedLocationArray.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedLocationArray + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedLongLong.m b/src/frameworks/CloudKit/src/CKEncryptedLongLong.m new file mode 100644 index 000000000..870f87b5a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedLongLong.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedLongLong + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedLongLongArray.m b/src/frameworks/CloudKit/src/CKEncryptedLongLongArray.m new file mode 100644 index 000000000..80a76f637 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedLongLongArray.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedLongLongArray + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedRecordValueStore.m b/src/frameworks/CloudKit/src/CKEncryptedRecordValueStore.m new file mode 100644 index 000000000..8944eeb02 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedRecordValueStore.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedRecordValueStore + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedReference.m b/src/frameworks/CloudKit/src/CKEncryptedReference.m new file mode 100644 index 000000000..b59b6b9be --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedReference.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedReference + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedString.m b/src/frameworks/CloudKit/src/CKEncryptedString.m new file mode 100644 index 000000000..7aebd39d0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedString.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedString + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEncryptedStringArray.m b/src/frameworks/CloudKit/src/CKEncryptedStringArray.m new file mode 100644 index 000000000..39219cf3d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEncryptedStringArray.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEncryptedStringArray + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEvaluatedObjectExpressionValidator.m b/src/frameworks/CloudKit/src/CKEvaluatedObjectExpressionValidator.m new file mode 100644 index 000000000..8d719a697 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEvaluatedObjectExpressionValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEvaluatedObjectExpressionValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEventMetric.m b/src/frameworks/CloudKit/src/CKEventMetric.m new file mode 100644 index 000000000..dae1cf1ce --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEventMetric.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEventMetric + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEventMetricInfo.m b/src/frameworks/CloudKit/src/CKEventMetricInfo.m new file mode 100644 index 000000000..a327540fb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEventMetricInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEventMetricInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEventOperationGroupInfo.m b/src/frameworks/CloudKit/src/CKEventOperationGroupInfo.m new file mode 100644 index 000000000..e54ba5527 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEventOperationGroupInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEventOperationGroupInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKEventOperationInfo.m b/src/frameworks/CloudKit/src/CKEventOperationInfo.m new file mode 100644 index 000000000..3e8ed0b8c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKEventOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKEventOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKException.m b/src/frameworks/CloudKit/src/CKException.m new file mode 100644 index 000000000..341efd96a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKException.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKException + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOperation.m b/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOperation.m new file mode 100644 index 000000000..398bae72f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchArchivedRecordsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOperationInfo.m new file mode 100644 index 000000000..276205802 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchArchivedRecordsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOptions.m b/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOptions.m new file mode 100644 index 000000000..41bf522c1 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchArchivedRecordsOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchArchivedRecordsOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperation.m b/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperation.m new file mode 100644 index 000000000..92bc222f4 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchDatabaseChangesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperationInfo.m new file mode 100644 index 000000000..32e686b9d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchDatabaseChangesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperationResult.m b/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperationResult.m new file mode 100644 index 000000000..c991cecd9 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchDatabaseChangesOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchDatabaseChangesOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperation.m b/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperation.m new file mode 100644 index 000000000..5da64b0da --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchNotificationChangesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperationInfo.m new file mode 100644 index 000000000..ef63fde4c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchNotificationChangesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperationResult.m b/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperationResult.m new file mode 100644 index 000000000..cee63bccc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchNotificationChangesOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchNotificationChangesOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordChangesOperation.m b/src/frameworks/CloudKit/src/CKFetchRecordChangesOperation.m new file mode 100644 index 000000000..692f6d447 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordChangesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordChangesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordChangesOperationResult.m b/src/frameworks/CloudKit/src/CKFetchRecordChangesOperationResult.m new file mode 100644 index 000000000..08f662fde --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordChangesOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordChangesOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordVersionsOperation.m b/src/frameworks/CloudKit/src/CKFetchRecordVersionsOperation.m new file mode 100644 index 000000000..01e8f2cbc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordVersionsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordVersionsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordVersionsOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchRecordVersionsOperationInfo.m new file mode 100644 index 000000000..bd8e197dd --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordVersionsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordVersionsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesConfiguration.m b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesConfiguration.m new file mode 100644 index 000000000..758e3a530 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesConfiguration.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordZoneChangesConfiguration + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOperation.m b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOperation.m new file mode 100644 index 000000000..2f4f05487 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordZoneChangesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOperationInfo.m new file mode 100644 index 000000000..01a33cf8b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordZoneChangesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOptions.m b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOptions.m new file mode 100644 index 000000000..ed5f94f59 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordZoneChangesOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordZoneChangesOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordZonesOperation.m b/src/frameworks/CloudKit/src/CKFetchRecordZonesOperation.m new file mode 100644 index 000000000..04cffe781 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordZonesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordZonesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordZonesOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchRecordZonesOperationInfo.m new file mode 100644 index 000000000..99f5a25dc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordZonesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordZonesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordsAssetInfo.m b/src/frameworks/CloudKit/src/CKFetchRecordsAssetInfo.m new file mode 100644 index 000000000..9fd91bb33 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordsAssetInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordsAssetInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordsOperation.m b/src/frameworks/CloudKit/src/CKFetchRecordsOperation.m new file mode 100644 index 000000000..1c6a9923f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchRecordsOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchRecordsOperationInfo.m new file mode 100644 index 000000000..4766146bd --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchRecordsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchRecordsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchShareMetadataOperation.m b/src/frameworks/CloudKit/src/CKFetchShareMetadataOperation.m new file mode 100644 index 000000000..65c26c418 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchShareMetadataOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchShareMetadataOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchShareMetadataOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchShareMetadataOperationInfo.m new file mode 100644 index 000000000..90accc647 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchShareMetadataOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchShareMetadataOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchShareParticipantKeyOperation.m b/src/frameworks/CloudKit/src/CKFetchShareParticipantKeyOperation.m new file mode 100644 index 000000000..2f4e225a5 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchShareParticipantKeyOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchShareParticipantKeyOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchShareParticipantKeyOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchShareParticipantKeyOperationInfo.m new file mode 100644 index 000000000..59ba62ab4 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchShareParticipantKeyOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchShareParticipantKeyOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchShareParticipantsOperation.m b/src/frameworks/CloudKit/src/CKFetchShareParticipantsOperation.m new file mode 100644 index 000000000..ed515fed2 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchShareParticipantsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchShareParticipantsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchShareParticipantsOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchShareParticipantsOperationInfo.m new file mode 100644 index 000000000..30e0a4f09 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchShareParticipantsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchShareParticipantsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchSubscriptionsOperation.m b/src/frameworks/CloudKit/src/CKFetchSubscriptionsOperation.m new file mode 100644 index 000000000..06f70a9ed --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchSubscriptionsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchSubscriptionsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchSubscriptionsOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchSubscriptionsOperationInfo.m new file mode 100644 index 000000000..8433dfbbe --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchSubscriptionsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchSubscriptionsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchUserQuotaOperation.m b/src/frameworks/CloudKit/src/CKFetchUserQuotaOperation.m new file mode 100644 index 000000000..838e6a552 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchUserQuotaOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchUserQuotaOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchUserQuotaOperationResult.m b/src/frameworks/CloudKit/src/CKFetchUserQuotaOperationResult.m new file mode 100644 index 000000000..816d9630a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchUserQuotaOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchUserQuotaOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperation.m b/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperation.m new file mode 100644 index 000000000..2c8d2fc2e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchWebAuthTokenOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperationInfo.m b/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperationInfo.m new file mode 100644 index 000000000..53194975b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchWebAuthTokenOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperationResult.m b/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperationResult.m new file mode 100644 index 000000000..9b09ef345 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchWebAuthTokenOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchWebAuthTokenOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchWhitelistedBundleIDsOperation.m b/src/frameworks/CloudKit/src/CKFetchWhitelistedBundleIDsOperation.m new file mode 100644 index 000000000..71944e26b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchWhitelistedBundleIDsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchWhitelistedBundleIDsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFetchWhitelistedBundleIDsOperationResult.m b/src/frameworks/CloudKit/src/CKFetchWhitelistedBundleIDsOperationResult.m new file mode 100644 index 000000000..889408d2b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFetchWhitelistedBundleIDsOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFetchWhitelistedBundleIDsOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFileMetadata.m b/src/frameworks/CloudKit/src/CKFileMetadata.m new file mode 100644 index 000000000..bc21f2f4c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFileMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFileMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFileOpenInfo.m b/src/frameworks/CloudKit/src/CKFileOpenInfo.m new file mode 100644 index 000000000..e3661f2e5 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFileOpenInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFileOpenInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFileOpenResult.m b/src/frameworks/CloudKit/src/CKFileOpenResult.m new file mode 100644 index 000000000..31c0a4132 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFileOpenResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFileOpenResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFlipFlopPredicateValidator.m b/src/frameworks/CloudKit/src/CKFlipFlopPredicateValidator.m new file mode 100644 index 000000000..16a2da063 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFlipFlopPredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFlipFlopPredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFlowControl.m b/src/frameworks/CloudKit/src/CKFlowControl.m new file mode 100644 index 000000000..3c6fff77e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFlowControl.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFlowControl + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKFunctionExpressionValidator.m b/src/frameworks/CloudKit/src/CKFunctionExpressionValidator.m new file mode 100644 index 000000000..b78a3ef3d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKFunctionExpressionValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKFunctionExpressionValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKInitiateParticipantVettingOperation.m b/src/frameworks/CloudKit/src/CKInitiateParticipantVettingOperation.m new file mode 100644 index 000000000..bdf5a5749 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKInitiateParticipantVettingOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKInitiateParticipantVettingOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKInitiateParticipantVettingOperationInfo.m b/src/frameworks/CloudKit/src/CKInitiateParticipantVettingOperationInfo.m new file mode 100644 index 000000000..83847a5fe --- /dev/null +++ b/src/frameworks/CloudKit/src/CKInitiateParticipantVettingOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKInitiateParticipantVettingOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKInternalError.m b/src/frameworks/CloudKit/src/CKInternalError.m new file mode 100644 index 000000000..4fbc1d065 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKInternalError.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKInternalError + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKKeyPathExpressionValidator.m b/src/frameworks/CloudKit/src/CKKeyPathExpressionValidator.m new file mode 100644 index 000000000..a780b0794 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKKeyPathExpressionValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKKeyPathExpressionValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKKindOfClassValidator.m b/src/frameworks/CloudKit/src/CKKindOfClassValidator.m new file mode 100644 index 000000000..52e880dc0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKKindOfClassValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKKindOfClassValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKKindOfCollectionClassValidator.m b/src/frameworks/CloudKit/src/CKKindOfCollectionClassValidator.m new file mode 100644 index 000000000..8f03419b0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKKindOfCollectionClassValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKKindOfCollectionClassValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKLegacyPredicateValidator.m b/src/frameworks/CloudKit/src/CKLegacyPredicateValidator.m new file mode 100644 index 000000000..e73c001a9 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKLegacyPredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKLegacyPredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKLocationSortDescriptor.m b/src/frameworks/CloudKit/src/CKLocationSortDescriptor.m new file mode 100644 index 000000000..8b7c2d71c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKLocationSortDescriptor.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKLocationSortDescriptor + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKLogFacilityWrapper.m b/src/frameworks/CloudKit/src/CKLogFacilityWrapper.m new file mode 100644 index 000000000..4bfde351f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKLogFacilityWrapper.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKLogFacilityWrapper + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKMarkAssetBrokenOperation.m b/src/frameworks/CloudKit/src/CKMarkAssetBrokenOperation.m new file mode 100644 index 000000000..29681162a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKMarkAssetBrokenOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKMarkAssetBrokenOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKMarkAssetBrokenOperationInfo.m b/src/frameworks/CloudKit/src/CKMarkAssetBrokenOperationInfo.m new file mode 100644 index 000000000..e22d8e47b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKMarkAssetBrokenOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKMarkAssetBrokenOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKMarkNotificationsReadOperation.m b/src/frameworks/CloudKit/src/CKMarkNotificationsReadOperation.m new file mode 100644 index 000000000..756cc0aaa --- /dev/null +++ b/src/frameworks/CloudKit/src/CKMarkNotificationsReadOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKMarkNotificationsReadOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKMarkNotificationsReadOperationInfo.m b/src/frameworks/CloudKit/src/CKMarkNotificationsReadOperationInfo.m new file mode 100644 index 000000000..ac4db3c01 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKMarkNotificationsReadOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKMarkNotificationsReadOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKMetric.m b/src/frameworks/CloudKit/src/CKMetric.m new file mode 100644 index 000000000..88a3d2469 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKMetric.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKMetric + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyBadgeOperation.m b/src/frameworks/CloudKit/src/CKModifyBadgeOperation.m new file mode 100644 index 000000000..ed296618e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyBadgeOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyBadgeOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyBadgeOperationInfo.m b/src/frameworks/CloudKit/src/CKModifyBadgeOperationInfo.m new file mode 100644 index 000000000..9765e1b16 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyBadgeOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyBadgeOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyRecordAccessOperation.m b/src/frameworks/CloudKit/src/CKModifyRecordAccessOperation.m new file mode 100644 index 000000000..f99f86b1a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyRecordAccessOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyRecordAccessOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyRecordAccessOperationInfo.m b/src/frameworks/CloudKit/src/CKModifyRecordAccessOperationInfo.m new file mode 100644 index 000000000..16b98a98d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyRecordAccessOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyRecordAccessOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyRecordZonesOperation.m b/src/frameworks/CloudKit/src/CKModifyRecordZonesOperation.m new file mode 100644 index 000000000..4179ab858 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyRecordZonesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyRecordZonesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyRecordZonesOperationInfo.m b/src/frameworks/CloudKit/src/CKModifyRecordZonesOperationInfo.m new file mode 100644 index 000000000..ee81c29ee --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyRecordZonesOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyRecordZonesOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyRecordsOperation.m b/src/frameworks/CloudKit/src/CKModifyRecordsOperation.m new file mode 100644 index 000000000..9648d1200 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyRecordsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyRecordsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyRecordsOperationInfo.m b/src/frameworks/CloudKit/src/CKModifyRecordsOperationInfo.m new file mode 100644 index 000000000..4a5555c3e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyRecordsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyRecordsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifySubscriptionsOperation.m b/src/frameworks/CloudKit/src/CKModifySubscriptionsOperation.m new file mode 100644 index 000000000..204f5c2f3 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifySubscriptionsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifySubscriptionsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifySubscriptionsOperationInfo.m b/src/frameworks/CloudKit/src/CKModifySubscriptionsOperationInfo.m new file mode 100644 index 000000000..2893f096f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifySubscriptionsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifySubscriptionsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyWebSharingOperation.m b/src/frameworks/CloudKit/src/CKModifyWebSharingOperation.m new file mode 100644 index 000000000..8e88d0a90 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyWebSharingOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyWebSharingOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKModifyWebSharingOperationInfo.m b/src/frameworks/CloudKit/src/CKModifyWebSharingOperationInfo.m new file mode 100644 index 000000000..00f47fca2 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKModifyWebSharingOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKModifyWebSharingOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKNilValidator.m b/src/frameworks/CloudKit/src/CKNilValidator.m new file mode 100644 index 000000000..fe77d7c55 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKNilValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKNilValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKNotification.m b/src/frameworks/CloudKit/src/CKNotification.m new file mode 100644 index 000000000..36333073f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKNotification.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKNotification + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKNotificationID.m b/src/frameworks/CloudKit/src/CKNotificationID.m new file mode 100644 index 000000000..c958319d5 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKNotificationID.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKNotificationID + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKNotificationInfo.m b/src/frameworks/CloudKit/src/CKNotificationInfo.m new file mode 100644 index 000000000..41e1d07bc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKNotificationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKNotificationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKNotificationListener.m b/src/frameworks/CloudKit/src/CKNotificationListener.m new file mode 100644 index 000000000..45472a83c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKNotificationListener.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKNotificationListener + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKObjCClass.m b/src/frameworks/CloudKit/src/CKObjCClass.m new file mode 100644 index 000000000..1aa86ad8b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKObjCClass.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKObjCClass + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKObjCProperty.m b/src/frameworks/CloudKit/src/CKObjCProperty.m new file mode 100644 index 000000000..ce5103842 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKObjCProperty.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKObjCProperty + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKObjCType.m b/src/frameworks/CloudKit/src/CKObjCType.m new file mode 100644 index 000000000..7b0d25cd4 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKObjCType.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKObjCType + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKObject.m b/src/frameworks/CloudKit/src/CKObject.m new file mode 100644 index 000000000..0007f40da --- /dev/null +++ b/src/frameworks/CloudKit/src/CKObject.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKObject + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperation.m b/src/frameworks/CloudKit/src/CKOperation.m new file mode 100644 index 000000000..c78ec2dbb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationCallbackManager.m b/src/frameworks/CloudKit/src/CKOperationCallbackManager.m new file mode 100644 index 000000000..8ef89bafd --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationCallbackManager.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationCallbackManager + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationConfiguration.m b/src/frameworks/CloudKit/src/CKOperationConfiguration.m new file mode 100644 index 000000000..84336edaa --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationConfiguration.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationConfiguration + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationFlowControlInfo.m b/src/frameworks/CloudKit/src/CKOperationFlowControlInfo.m new file mode 100644 index 000000000..16f8c5a30 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationFlowControlInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationFlowControlInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationFlowControlManager.m b/src/frameworks/CloudKit/src/CKOperationFlowControlManager.m new file mode 100644 index 000000000..feef120f0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationFlowControlManager.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationFlowControlManager + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationGroup.m b/src/frameworks/CloudKit/src/CKOperationGroup.m new file mode 100644 index 000000000..bab17b328 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationGroup.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationGroup + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationGroupSystemImposedInfo.m b/src/frameworks/CloudKit/src/CKOperationGroupSystemImposedInfo.m new file mode 100644 index 000000000..503434365 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationGroupSystemImposedInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationGroupSystemImposedInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationGroupSystemImposedInfoConfiguration.m b/src/frameworks/CloudKit/src/CKOperationGroupSystemImposedInfoConfiguration.m new file mode 100644 index 000000000..6b9d2e38f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationGroupSystemImposedInfoConfiguration.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationGroupSystemImposedInfoConfiguration + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationInfo.m b/src/frameworks/CloudKit/src/CKOperationInfo.m new file mode 100644 index 000000000..19d2a6bf5 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationMMCSRequestOptions.m b/src/frameworks/CloudKit/src/CKOperationMMCSRequestOptions.m new file mode 100644 index 000000000..8946e1216 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationMMCSRequestOptions.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationMMCSRequestOptions + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationMetrics.m b/src/frameworks/CloudKit/src/CKOperationMetrics.m new file mode 100644 index 000000000..89877fe48 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationMetrics.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationMetrics + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKOperationResult.m b/src/frameworks/CloudKit/src/CKOperationResult.m new file mode 100644 index 000000000..d8f9ea1af --- /dev/null +++ b/src/frameworks/CloudKit/src/CKOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPCSDiagnosticInformation.m b/src/frameworks/CloudKit/src/CKPCSDiagnosticInformation.m new file mode 100644 index 000000000..2999bc837 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPCSDiagnosticInformation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPCSDiagnosticInformation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPackage.m b/src/frameworks/CloudKit/src/CKPackage.m new file mode 100644 index 000000000..b3e3e3a7c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPackage.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPackage + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPackageDB.m b/src/frameworks/CloudKit/src/CKPackageDB.m new file mode 100644 index 000000000..0111be6e1 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPackageDB.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPackageDB + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPackageDBDelegate.m b/src/frameworks/CloudKit/src/CKPackageDBDelegate.m new file mode 100644 index 000000000..918c0fffd --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPackageDBDelegate.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPackageDBDelegate + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPackageItem.m b/src/frameworks/CloudKit/src/CKPackageItem.m new file mode 100644 index 000000000..fc80165da --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPackageItem.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPackageItem + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPackageSection.m b/src/frameworks/CloudKit/src/CKPackageSection.m new file mode 100644 index 000000000..3e90abe7b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPackageSection.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPackageSection + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPackageUploadRequestMetadata.m b/src/frameworks/CloudKit/src/CKPackageUploadRequestMetadata.m new file mode 100644 index 000000000..088d57351 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPackageUploadRequestMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPackageUploadRequestMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPlaceholderOperation.m b/src/frameworks/CloudKit/src/CKPlaceholderOperation.m new file mode 100644 index 000000000..b5c9cf2fa --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPlaceholderOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPlaceholderOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPredicateValidator.m b/src/frameworks/CloudKit/src/CKPredicateValidator.m new file mode 100644 index 000000000..55030b295 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPredicateValidatorInstance.m b/src/frameworks/CloudKit/src/CKPredicateValidatorInstance.m new file mode 100644 index 000000000..f8cd9afbc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPredicateValidatorInstance.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPredicateValidatorInstance + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPrettyError.m b/src/frameworks/CloudKit/src/CKPrettyError.m new file mode 100644 index 000000000..4a275ea2d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPrettyError.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPrettyError + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPublicKey.m b/src/frameworks/CloudKit/src/CKPublicKey.m new file mode 100644 index 000000000..915997381 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPublicKey.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPublicKey + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPublishAssetsOperation.m b/src/frameworks/CloudKit/src/CKPublishAssetsOperation.m new file mode 100644 index 000000000..3cf40fc1c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPublishAssetsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPublishAssetsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKPublishAssetsOperationInfo.m b/src/frameworks/CloudKit/src/CKPublishAssetsOperationInfo.m new file mode 100644 index 000000000..393f23284 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKPublishAssetsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKPublishAssetsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQuery.m b/src/frameworks/CloudKit/src/CKQuery.m new file mode 100644 index 000000000..b4a23a735 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQuery.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQuery + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQueryCursor.m b/src/frameworks/CloudKit/src/CKQueryCursor.m new file mode 100644 index 000000000..d8898dcde --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQueryCursor.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQueryCursor + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQueryNotification.m b/src/frameworks/CloudKit/src/CKQueryNotification.m new file mode 100644 index 000000000..c5f832fe2 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQueryNotification.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQueryNotification + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQueryOperation.m b/src/frameworks/CloudKit/src/CKQueryOperation.m new file mode 100644 index 000000000..8f5df576d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQueryOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQueryOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQueryOperationInfo.m b/src/frameworks/CloudKit/src/CKQueryOperationInfo.m new file mode 100644 index 000000000..8d09efec6 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQueryOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQueryOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQueryOperationResult.m b/src/frameworks/CloudKit/src/CKQueryOperationResult.m new file mode 100644 index 000000000..ae7e4836b --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQueryOperationResult.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQueryOperationResult + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKQuerySubscription.m b/src/frameworks/CloudKit/src/CKQuerySubscription.m new file mode 100644 index 000000000..e8e28621d --- /dev/null +++ b/src/frameworks/CloudKit/src/CKQuerySubscription.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKQuerySubscription + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecord.m b/src/frameworks/CloudKit/src/CKRecord.m new file mode 100644 index 000000000..07c8c6ebd --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecord.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecord + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordGraph.m b/src/frameworks/CloudKit/src/CKRecordGraph.m new file mode 100644 index 000000000..a4f836d1e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordGraph.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordGraph + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordGraphNode.m b/src/frameworks/CloudKit/src/CKRecordGraphNode.m new file mode 100644 index 000000000..d1c23448a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordGraphNode.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordGraphNode + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordID.m b/src/frameworks/CloudKit/src/CKRecordID.m new file mode 100644 index 000000000..4cb172de0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordID.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordID + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordValueStore.m b/src/frameworks/CloudKit/src/CKRecordValueStore.m new file mode 100644 index 000000000..03153b199 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordValueStore.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordValueStore + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordZone.m b/src/frameworks/CloudKit/src/CKRecordZone.m new file mode 100644 index 000000000..ad60952fc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordZone.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordZone + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordZoneID.m b/src/frameworks/CloudKit/src/CKRecordZoneID.m new file mode 100644 index 000000000..1ddb5e97c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordZoneID.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordZoneID + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordZoneNotification.m b/src/frameworks/CloudKit/src/CKRecordZoneNotification.m new file mode 100644 index 000000000..0271f23cb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordZoneNotification.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordZoneNotification + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecordZoneSubscription.m b/src/frameworks/CloudKit/src/CKRecordZoneSubscription.m new file mode 100644 index 000000000..f51272ec9 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecordZoneSubscription.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecordZoneSubscription + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRecursivePredicateValidator.m b/src/frameworks/CloudKit/src/CKRecursivePredicateValidator.m new file mode 100644 index 000000000..a4edde1dc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRecursivePredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRecursivePredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKReference.m b/src/frameworks/CloudKit/src/CKReference.m new file mode 100644 index 000000000..646b999dc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKReference.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKReference + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRepairAssetsOperation.m b/src/frameworks/CloudKit/src/CKRepairAssetsOperation.m new file mode 100644 index 000000000..34f15dd28 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRepairAssetsOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRepairAssetsOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRepairAssetsOperationInfo.m b/src/frameworks/CloudKit/src/CKRepairAssetsOperationInfo.m new file mode 100644 index 000000000..960f21f54 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRepairAssetsOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRepairAssetsOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRepairZonePCSOperation.m b/src/frameworks/CloudKit/src/CKRepairZonePCSOperation.m new file mode 100644 index 000000000..06d3e3404 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRepairZonePCSOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRepairZonePCSOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRepairZonePCSOperationInfo.m b/src/frameworks/CloudKit/src/CKRepairZonePCSOperationInfo.m new file mode 100644 index 000000000..cc61a3640 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRepairZonePCSOperationInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRepairZonePCSOperationInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRequestAssetOperation.m b/src/frameworks/CloudKit/src/CKRequestAssetOperation.m new file mode 100644 index 000000000..8839a061e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRequestAssetOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRequestAssetOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKRequestInfo.m b/src/frameworks/CloudKit/src/CKRequestInfo.m new file mode 100644 index 000000000..8d5e9dffe --- /dev/null +++ b/src/frameworks/CloudKit/src/CKRequestInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKRequestInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSQLite.m b/src/frameworks/CloudKit/src/CKSQLite.m new file mode 100644 index 000000000..75d313219 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSQLite.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSQLite + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSQLiteError.m b/src/frameworks/CloudKit/src/CKSQLiteError.m new file mode 100644 index 000000000..67465290c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSQLiteError.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSQLiteError + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSQLitePool.m b/src/frameworks/CloudKit/src/CKSQLitePool.m new file mode 100644 index 000000000..1d48fd22f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSQLitePool.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSQLitePool + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSQLiteStatement.m b/src/frameworks/CloudKit/src/CKSQLiteStatement.m new file mode 100644 index 000000000..c78d54d80 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSQLiteStatement.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSQLiteStatement + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSQLiteStatementEnumerator.m b/src/frameworks/CloudKit/src/CKSQLiteStatementEnumerator.m new file mode 100644 index 000000000..a52a00487 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSQLiteStatementEnumerator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSQLiteStatementEnumerator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKScheduler.m b/src/frameworks/CloudKit/src/CKScheduler.m new file mode 100644 index 000000000..a6eb340df --- /dev/null +++ b/src/frameworks/CloudKit/src/CKScheduler.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKScheduler + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSchedulerActivity.m b/src/frameworks/CloudKit/src/CKSchedulerActivity.m new file mode 100644 index 000000000..2702c0372 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSchedulerActivity.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSchedulerActivity + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKServerChangeToken.m b/src/frameworks/CloudKit/src/CKServerChangeToken.m new file mode 100644 index 000000000..749547ff7 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKServerChangeToken.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKServerChangeToken + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKShare.m b/src/frameworks/CloudKit/src/CKShare.m new file mode 100644 index 000000000..110553314 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKShare.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKShare + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKShareMetadata.m b/src/frameworks/CloudKit/src/CKShareMetadata.m new file mode 100644 index 000000000..c3e7254aa --- /dev/null +++ b/src/frameworks/CloudKit/src/CKShareMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKShareMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKShareParticipant.m b/src/frameworks/CloudKit/src/CKShareParticipant.m new file mode 100644 index 000000000..a575054f7 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKShareParticipant.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKShareParticipant + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSignatureGenerator.m b/src/frameworks/CloudKit/src/CKSignatureGenerator.m new file mode 100644 index 000000000..02b33e28a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSignatureGenerator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSignatureGenerator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKStreamingAsset.m b/src/frameworks/CloudKit/src/CKStreamingAsset.m new file mode 100644 index 000000000..ccffd1133 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKStreamingAsset.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKStreamingAsset + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKStreamingAssetAppendContext.m b/src/frameworks/CloudKit/src/CKStreamingAssetAppendContext.m new file mode 100644 index 000000000..f173a5f09 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKStreamingAssetAppendContext.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKStreamingAssetAppendContext + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKStringValueValidator.m b/src/frameworks/CloudKit/src/CKStringValueValidator.m new file mode 100644 index 000000000..93d202388 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKStringValueValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKStringValueValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSubscription.m b/src/frameworks/CloudKit/src/CKSubscription.m new file mode 100644 index 000000000..96a42fc97 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSubscription.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSubscription + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSubscriptionInfo.m b/src/frameworks/CloudKit/src/CKSubscriptionInfo.m new file mode 100644 index 000000000..28ec3e89f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSubscriptionInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSubscriptionInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncEngine.m b/src/frameworks/CloudKit/src/CKSyncEngine.m new file mode 100644 index 000000000..3fa0e7705 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncEngine.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncEngine + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncEngineBatch.m b/src/frameworks/CloudKit/src/CKSyncEngineBatch.m new file mode 100644 index 000000000..4da481ece --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncEngineBatch.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncEngineBatch + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncEngineFetchChangesOperation.m b/src/frameworks/CloudKit/src/CKSyncEngineFetchChangesOperation.m new file mode 100644 index 000000000..99804921c --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncEngineFetchChangesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncEngineFetchChangesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncEngineMetadata.m b/src/frameworks/CloudKit/src/CKSyncEngineMetadata.m new file mode 100644 index 000000000..9920cbd62 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncEngineMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncEngineMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncEngineModifyRecordBatchesOperation.m b/src/frameworks/CloudKit/src/CKSyncEngineModifyRecordBatchesOperation.m new file mode 100644 index 000000000..39bb72d77 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncEngineModifyRecordBatchesOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncEngineModifyRecordBatchesOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncEngineRecordModification.m b/src/frameworks/CloudKit/src/CKSyncEngineRecordModification.m new file mode 100644 index 000000000..9d9923792 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncEngineRecordModification.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncEngineRecordModification + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncRequestOperation.m b/src/frameworks/CloudKit/src/CKSyncRequestOperation.m new file mode 100644 index 000000000..15bfbfed0 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncRequestOperation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncRequestOperation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKSyncingClientInfo.m b/src/frameworks/CloudKit/src/CKSyncingClientInfo.m new file mode 100644 index 000000000..ed8b22e3f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKSyncingClientInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKSyncingClientInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKTruePredicateValidator.m b/src/frameworks/CloudKit/src/CKTruePredicateValidator.m new file mode 100644 index 000000000..359a50ce3 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKTruePredicateValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKTruePredicateValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKTrueValidator.m b/src/frameworks/CloudKit/src/CKTrueValidator.m new file mode 100644 index 000000000..090e9e2ad --- /dev/null +++ b/src/frameworks/CloudKit/src/CKTrueValidator.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKTrueValidator + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestConfiguration.m b/src/frameworks/CloudKit/src/CKUploadRequestConfiguration.m new file mode 100644 index 000000000..7e74c905a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestConfiguration.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestConfiguration + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestManager.m b/src/frameworks/CloudKit/src/CKUploadRequestManager.m new file mode 100644 index 000000000..a0bdf737a --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestManager.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestManager + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestManagerInternals.m b/src/frameworks/CloudKit/src/CKUploadRequestManagerInternals.m new file mode 100644 index 000000000..4fc7292c9 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestManagerInternals.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestManagerInternals + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestManagerResponseActionThrottler.m b/src/frameworks/CloudKit/src/CKUploadRequestManagerResponseActionThrottler.m new file mode 100644 index 000000000..28a18e309 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestManagerResponseActionThrottler.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestManagerResponseActionThrottler + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestManagerResponseActionThrottlerMetadata.m b/src/frameworks/CloudKit/src/CKUploadRequestManagerResponseActionThrottlerMetadata.m new file mode 100644 index 000000000..71b03db7e --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestManagerResponseActionThrottlerMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestManagerResponseActionThrottlerMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestManagerStateMachine.m b/src/frameworks/CloudKit/src/CKUploadRequestManagerStateMachine.m new file mode 100644 index 000000000..a055e9054 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestManagerStateMachine.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestManagerStateMachine + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestMetadata.m b/src/frameworks/CloudKit/src/CKUploadRequestMetadata.m new file mode 100644 index 000000000..46b1d98eb --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestMetadata.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestMetadata + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUploadRequestPersistentStore.m b/src/frameworks/CloudKit/src/CKUploadRequestPersistentStore.m new file mode 100644 index 000000000..96b9e5c53 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUploadRequestPersistentStore.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUploadRequestPersistentStore + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUserIdentity.m b/src/frameworks/CloudKit/src/CKUserIdentity.m new file mode 100644 index 000000000..f0604c3fc --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUserIdentity.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUserIdentity + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUserIdentityLookupInfo.m b/src/frameworks/CloudKit/src/CKUserIdentityLookupInfo.m new file mode 100644 index 000000000..e491ce756 --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUserIdentityLookupInfo.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUserIdentityLookupInfo + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKUserNotificationUtilities.m b/src/frameworks/CloudKit/src/CKUserNotificationUtilities.m new file mode 100644 index 000000000..2c00d6ecf --- /dev/null +++ b/src/frameworks/CloudKit/src/CKUserNotificationUtilities.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKUserNotificationUtilities + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CKZonePCSDiagnosticInformation.m b/src/frameworks/CloudKit/src/CKZonePCSDiagnosticInformation.m new file mode 100644 index 000000000..f33c2f87f --- /dev/null +++ b/src/frameworks/CloudKit/src/CKZonePCSDiagnosticInformation.m @@ -0,0 +1,34 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + +#import + +@implementation CKZonePCSDiagnosticInformation + +- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector +{ + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; +} + +- (void)forwardInvocation:(NSInvocation *)anInvocation +{ + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); +} + +@end diff --git a/src/frameworks/CloudKit/src/CloudKit.m b/src/frameworks/CloudKit/src/CloudKit.m new file mode 100644 index 000000000..84964ae0b --- /dev/null +++ b/src/frameworks/CloudKit/src/CloudKit.m @@ -0,0 +1,846 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Darling. If not, see . +*/ + + +#include +#include +#include + +static int verbose = 0; + +__attribute__((constructor)) +static void initme(void) { + verbose = getenv("STUB_VERBOSE") != NULL; +} + +void* CKAbsoluteHostTime(void) +{ + if (verbose) puts("STUB: CKAbsoluteHostTime called"); + return NULL; +} + +void* CKAcceptablePredicateValueClasses(void) +{ + if (verbose) puts("STUB: CKAcceptablePredicateValueClasses called"); + return NULL; +} + +void* CKAcceptableValueClasses(void) +{ + if (verbose) puts("STUB: CKAcceptableValueClasses called"); + return NULL; +} + +void* CKAllClientEntitlementKeys(void) +{ + if (verbose) puts("STUB: CKAllClientEntitlementKeys called"); + return NULL; +} + +void* CKAppIdentifierFromTeamAppTuple(void) +{ + if (verbose) puts("STUB: CKAppIdentifierFromTeamAppTuple called"); + return NULL; +} + +void* CKAutoBugCaptureReasonToString(void) +{ + if (verbose) puts("STUB: CKAutoBugCaptureReasonToString called"); + return NULL; +} + +void* CKBoolFromCKTernary(void) +{ + if (verbose) puts("STUB: CKBoolFromCKTernary called"); + return NULL; +} + +void* CKBuildVersion(void) +{ + if (verbose) puts("STUB: CKBuildVersion called"); + return NULL; +} + +void* CKCFArrayForEach(void) +{ + if (verbose) puts("STUB: CKCFArrayForEach called"); + return NULL; +} + +void* CKCFDictionaryForEach(void) +{ + if (verbose) puts("STUB: CKCFDictionaryForEach called"); + return NULL; +} + +void* CKCanRetryForError(void) +{ + if (verbose) puts("STUB: CKCanRetryForError called"); + return NULL; +} + +void* CKContainerEnvironmentFromString(void) +{ + if (verbose) puts("STUB: CKContainerEnvironmentFromString called"); + return NULL; +} + +void* CKContainerEnvironmentString(void) +{ + if (verbose) puts("STUB: CKContainerEnvironmentString called"); + return NULL; +} + +void* CKContainerIdentifierIsAppleInternal(void) +{ + if (verbose) puts("STUB: CKContainerIdentifierIsAppleInternal called"); + return NULL; +} + +void* CKCreateDirectoryAtPath(void) +{ + if (verbose) puts("STUB: CKCreateDirectoryAtPath called"); + return NULL; +} + +void* CKCreateDirectoryAtPathWithAttributes(void) +{ + if (verbose) puts("STUB: CKCreateDirectoryAtPathWithAttributes called"); + return NULL; +} + +void* CKCreateGUID(void) +{ + if (verbose) puts("STUB: CKCreateGUID called"); + return NULL; +} + +void* CKCurrentProcessIsDaemon(void) +{ + if (verbose) puts("STUB: CKCurrentProcessIsDaemon called"); + return NULL; +} + +void* CKCurrentQueueIsMainQueue(void) +{ + if (verbose) puts("STUB: CKCurrentQueueIsMainQueue called"); + return NULL; +} + +void* CKCurrentQueueQualityOfService(void) +{ + if (verbose) puts("STUB: CKCurrentQueueQualityOfService called"); + return NULL; +} + +void* CKCurrentThreadQualityOfService(void) +{ + if (verbose) puts("STUB: CKCurrentThreadQualityOfService called"); + return NULL; +} + +void* CKDPDateReadFrom(void) +{ + if (verbose) puts("STUB: CKDPDateReadFrom called"); + return NULL; +} + +void* CKDPIdentifierReadFrom(void) +{ + if (verbose) puts("STUB: CKDPIdentifierReadFrom called"); + return NULL; +} + +void* CKDPLocationCoordinateReadFrom(void) +{ + if (verbose) puts("STUB: CKDPLocationCoordinateReadFrom called"); + return NULL; +} + +void* CKDPRecordFieldValueEncryptedValueReadFrom(void) +{ + if (verbose) puts("STUB: CKDPRecordFieldValueEncryptedValueReadFrom called"); + return NULL; +} + +void* CKDPRecordIdentifierReadFrom(void) +{ + if (verbose) puts("STUB: CKDPRecordIdentifierReadFrom called"); + return NULL; +} + +void* CKDPRecordReferenceReadFrom(void) +{ + if (verbose) puts("STUB: CKDPRecordReferenceReadFrom called"); + return NULL; +} + +void* CKDPRecordZoneIdentifierReadFrom(void) +{ + if (verbose) puts("STUB: CKDPRecordZoneIdentifierReadFrom called"); + return NULL; +} + +void* CKDatabaseScopeFromString(void) +{ + if (verbose) puts("STUB: CKDatabaseScopeFromString called"); + return NULL; +} + +void* CKDatabaseScopeString(void) +{ + if (verbose) puts("STUB: CKDatabaseScopeString called"); + return NULL; +} + +void* CKDatasAreBothNilOrEqual(void) +{ + if (verbose) puts("STUB: CKDatasAreBothNilOrEqual called"); + return NULL; +} + +void* CKDeviceID(void) +{ + if (verbose) puts("STUB: CKDeviceID called"); + return NULL; +} + +void* CKEarliestStartDateAfterError(void) +{ + if (verbose) puts("STUB: CKEarliestStartDateAfterError called"); + return NULL; +} + +void* CKErrorChainFromError(void) +{ + if (verbose) puts("STUB: CKErrorChainFromError called"); + return NULL; +} + +void* CKErrorChainStringFromError(void) +{ + if (verbose) puts("STUB: CKErrorChainStringFromError called"); + return NULL; +} + +void* CKErrorCodeForInternalErrorCode(void) +{ + if (verbose) puts("STUB: CKErrorCodeForInternalErrorCode called"); + return NULL; +} + +void* CKErrorCodeForNSURLErrorCode(void) +{ + if (verbose) puts("STUB: CKErrorCodeForNSURLErrorCode called"); + return NULL; +} + +void* CKErrorIsCode(void) +{ + if (verbose) puts("STUB: CKErrorIsCode called"); + return NULL; +} + +void* CKFetchAPSEnvironmentFromServerOrEntitlements(void) +{ + if (verbose) puts("STUB: CKFetchAPSEnvironmentFromServerOrEntitlements called"); + return NULL; +} + +void* CKGetCurrentActivities(void) +{ + if (verbose) puts("STUB: CKGetCurrentActivities called"); + return NULL; +} + +void* CKGetGlobalQueue(void) +{ + if (verbose) puts("STUB: CKGetGlobalQueue called"); + return NULL; +} + +void* CKGetHomeDir(void) +{ + if (verbose) puts("STUB: CKGetHomeDir called"); + return NULL; +} + +void* CKGetHomeDirRealPath(void) +{ + if (verbose) puts("STUB: CKGetHomeDirRealPath called"); + return NULL; +} + +void* CKGetRealPath(void) +{ + if (verbose) puts("STUB: CKGetRealPath called"); + return NULL; +} + +void* CKHexCharFromBytes(void) +{ + if (verbose) puts("STUB: CKHexCharFromBytes called"); + return NULL; +} + +void* CKIndexedArrayKey(void) +{ + if (verbose) puts("STUB: CKIndexedArrayKey called"); + return NULL; +} + +void* CKIsPCSError(void) +{ + if (verbose) puts("STUB: CKIsPCSError called"); + return NULL; +} + +void* CKIsRunningInCloudD(void) +{ + if (verbose) puts("STUB: CKIsRunningInCloudD called"); + return NULL; +} + +void* CKIsRunningInTestHost(void) +{ + if (verbose) puts("STUB: CKIsRunningInTestHost called"); + return NULL; +} + +void* CKIsValidOperationForScope(void) +{ + if (verbose) puts("STUB: CKIsValidOperationForScope called"); + return NULL; +} + +void* CKLinkCheck0fd6bdf95f2efb6e65813fd4cd0f5d9af656d08a(void) +{ + if (verbose) puts("STUB: CKLinkCheck0fd6bdf95f2efb6e65813fd4cd0f5d9af656d08a called"); + return NULL; +} + +void* CKLinkCheck5dbf91c3fd1d871f0bcfe60afeb451e3e708d350(void) +{ + if (verbose) puts("STUB: CKLinkCheck5dbf91c3fd1d871f0bcfe60afeb451e3e708d350 called"); + return NULL; +} + +void* CKLinkCheck908c3403f5370f9fc0f790c790ce4de0669132c0(void) +{ + if (verbose) puts("STUB: CKLinkCheck908c3403f5370f9fc0f790c790ce4de0669132c0 called"); + return NULL; +} + +void* CKLinkCheck92e3e8f8ec1a906754afb22d87eb36301b4f6760(void) +{ + if (verbose) puts("STUB: CKLinkCheck92e3e8f8ec1a906754afb22d87eb36301b4f6760 called"); + return NULL; +} + +void* CKMainBundleIsAppleExecutable(void) +{ + if (verbose) puts("STUB: CKMainBundleIsAppleExecutable called"); + return NULL; +} + +void* CKNSIndexSet_enumerateInverseRangesInRange_options_usingBlock(void) +{ + if (verbose) puts("STUB: CKNSIndexSet_enumerateInverseRangesInRange_options_usingBlock called"); + return NULL; +} + +void* CKNSIndexSet_indexSetWithInverseIndexSet(void) +{ + if (verbose) puts("STUB: CKNSIndexSet_indexSetWithInverseIndexSet called"); + return NULL; +} + +void* CKNSQualityOfServiceFromQoSClass(void) +{ + if (verbose) puts("STUB: CKNSQualityOfServiceFromQoSClass called"); + return NULL; +} + +void* CKOperationGroupTransferSizeForBytes(void) +{ + if (verbose) puts("STUB: CKOperationGroupTransferSizeForBytes called"); + return NULL; +} + +void* CKOperationLoggableProgressArguments(void) +{ + if (verbose) puts("STUB: CKOperationLoggableProgressArguments called"); + return NULL; +} + +void* CKOperationProgressCallbackClasses(void) +{ + if (verbose) puts("STUB: CKOperationProgressCallbackClasses called"); + return NULL; +} + +void* CKPIDIsStillAlive(void) +{ + if (verbose) puts("STUB: CKPIDIsStillAlive called"); + return NULL; +} + +void* CKProcessIndexedArrayKey(void) +{ + if (verbose) puts("STUB: CKProcessIndexedArrayKey called"); + return NULL; +} + +void* CKProductName(void) +{ + if (verbose) puts("STUB: CKProductName called"); + return NULL; +} + +void* CKProductType(void) +{ + if (verbose) puts("STUB: CKProductType called"); + return NULL; +} + +void* CKProductVersion(void) +{ + if (verbose) puts("STUB: CKProductVersion called"); + return NULL; +} + +void* CKQoSClassFromNSQualityOfService(void) +{ + if (verbose) puts("STUB: CKQoSClassFromNSQualityOfService called"); + return NULL; +} + +void* CKQoSIsBackground(void) +{ + if (verbose) puts("STUB: CKQoSIsBackground called"); + return NULL; +} + +void* CKQualityOfServiceOrdering(void) +{ + if (verbose) puts("STUB: CKQualityOfServiceOrdering called"); + return NULL; +} + +void* CKRetryAfterSecondsForError(void) +{ + if (verbose) puts("STUB: CKRetryAfterSecondsForError called"); + return NULL; +} + +void* CKSDKVersion(void) +{ + if (verbose) puts("STUB: CKSDKVersion called"); + return NULL; +} + +void* CKSQLiteJournalSuffixes(void) +{ + if (verbose) puts("STUB: CKSQLiteJournalSuffixes called"); + return NULL; +} + +void* CKServerEnvironmentFromString(void) +{ + if (verbose) puts("STUB: CKServerEnvironmentFromString called"); + return NULL; +} + +void* CKShareURLSlugForiWorkShareTitle(void) +{ + if (verbose) puts("STUB: CKShareURLSlugForiWorkShareTitle called"); + return NULL; +} + +void* CKSharingContainerSlugForContainerID(void) +{ + if (verbose) puts("STUB: CKSharingContainerSlugForContainerID called"); + return NULL; +} + +void* CKShortRandomID(void) +{ + if (verbose) puts("STUB: CKShortRandomID called"); + return NULL; +} + +void* CKShouldUseNewPredicateValidation(void) +{ + if (verbose) puts("STUB: CKShouldUseNewPredicateValidation called"); + return NULL; +} + +void* CKShouldWrapErrorFetchingRecords(void) +{ + if (verbose) puts("STUB: CKShouldWrapErrorFetchingRecords called"); + return NULL; +} + +void* CKStringForDiscretionaryNetworkBehavior(void) +{ + if (verbose) puts("STUB: CKStringForDiscretionaryNetworkBehavior called"); + return NULL; +} + +void* CKStringForNetworkServiceType(void) +{ + if (verbose) puts("STUB: CKStringForNetworkServiceType called"); + return NULL; +} + +void* CKStringForQOS(void) +{ + if (verbose) puts("STUB: CKStringForQOS called"); + return NULL; +} + +void* CKStringForTransferSize(void) +{ + if (verbose) puts("STUB: CKStringForTransferSize called"); + return NULL; +} + +void* CKStringForXPCActivityState(void) +{ + if (verbose) puts("STUB: CKStringForXPCActivityState called"); + return NULL; +} + +void* CKStringFromAccountChangeType(void) +{ + if (verbose) puts("STUB: CKStringFromAccountChangeType called"); + return NULL; +} + +void* CKStringFromAccountStatus(void) +{ + if (verbose) puts("STUB: CKStringFromAccountStatus called"); + return NULL; +} + +void* CKStringFromApplicationPermissionStatus(void) +{ + if (verbose) puts("STUB: CKStringFromApplicationPermissionStatus called"); + return NULL; +} + +void* CKStringFromCKMMCSEncryptionSupport(void) +{ + if (verbose) puts("STUB: CKStringFromCKMMCSEncryptionSupport called"); + return NULL; +} + +void* CKStringFromCapabilities(void) +{ + if (verbose) puts("STUB: CKStringFromCapabilities called"); + return NULL; +} + +void* CKStringFromDeviceToDeviceEncryptionStatus(void) +{ + if (verbose) puts("STUB: CKStringFromDeviceToDeviceEncryptionStatus called"); + return NULL; +} + +void* CKStringFromParticipantAcceptanceStatus(void) +{ + if (verbose) puts("STUB: CKStringFromParticipantAcceptanceStatus called"); + return NULL; +} + +void* CKStringFromParticipantInvitationTokenStatus(void) +{ + if (verbose) puts("STUB: CKStringFromParticipantInvitationTokenStatus called"); + return NULL; +} + +void* CKStringFromParticipantPermission(void) +{ + if (verbose) puts("STUB: CKStringFromParticipantPermission called"); + return NULL; +} + +void* CKStringFromParticipantRole(void) +{ + if (verbose) puts("STUB: CKStringFromParticipantRole called"); + return NULL; +} + +void* CKStringFromPartition(void) +{ + if (verbose) puts("STUB: CKStringFromPartition called"); + return NULL; +} + +void* CKStringFromServerEnvironment(void) +{ + if (verbose) puts("STUB: CKStringFromServerEnvironment called"); + return NULL; +} + +void* CKStringFromShareParticipantVisibility(void) +{ + if (verbose) puts("STUB: CKStringFromShareParticipantVisibility called"); + return NULL; +} + +void* CKStringWithArray(void) +{ + if (verbose) puts("STUB: CKStringWithArray called"); + return NULL; +} + +void* CKStringWithBytes(void) +{ + if (verbose) puts("STUB: CKStringWithBytes called"); + return NULL; +} + +void* CKStringWithData(void) +{ + if (verbose) puts("STUB: CKStringWithData called"); + return NULL; +} + +void* CKStringWithDate(void) +{ + if (verbose) puts("STUB: CKStringWithDate called"); + return NULL; +} + +void* CKStringWithDictionary(void) +{ + if (verbose) puts("STUB: CKStringWithDictionary called"); + return NULL; +} + +void* CKStringWithLimitedArray(void) +{ + if (verbose) puts("STUB: CKStringWithLimitedArray called"); + return NULL; +} + +void* CKStringWithNibbles(void) +{ + if (verbose) puts("STUB: CKStringWithNibbles called"); + return NULL; +} + +void* CKStringWithObject(void) +{ + if (verbose) puts("STUB: CKStringWithObject called"); + return NULL; +} + +void* CKStringWithSet(void) +{ + if (verbose) puts("STUB: CKStringWithSet called"); + return NULL; +} + +void* CKStringsAreBothNilOrEqual(void) +{ + if (verbose) puts("STUB: CKStringsAreBothNilOrEqual called"); + return NULL; +} + +void* CKSyncEngineRecordModificationTypeOpposite(void) +{ + if (verbose) puts("STUB: CKSyncEngineRecordModificationTypeOpposite called"); + return NULL; +} + +void* CKTabIndentAtDepth(void) +{ + if (verbose) puts("STUB: CKTabIndentAtDepth called"); + return NULL; +} + +void* CKTernaryFromBOOL(void) +{ + if (verbose) puts("STUB: CKTernaryFromBOOL called"); + return NULL; +} + +void* CKTopLevelUnderlyingErrorCodes(void) +{ + if (verbose) puts("STUB: CKTopLevelUnderlyingErrorCodes called"); + return NULL; +} + +void* CKTriggerAutoBugCaptureWithFormatSignature(void) +{ + if (verbose) puts("STUB: CKTriggerAutoBugCaptureWithFormatSignature called"); + return NULL; +} + +void* CKTriggerClientSideAutoBugCaptureWithFormatSignature(void) +{ + if (verbose) puts("STUB: CKTriggerClientSideAutoBugCaptureWithFormatSignature called"); + return NULL; +} + +void* CKValidSharingURLHostnames(void) +{ + if (verbose) puts("STUB: CKValidSharingURLHostnames called"); + return NULL; +} + +void* CKValidateIndexedArrayKeys(void) +{ + if (verbose) puts("STUB: CKValidateIndexedArrayKeys called"); + return NULL; +} + +void* CKValidateKeyName(void) +{ + if (verbose) puts("STUB: CKValidateKeyName called"); + return NULL; +} + +void* CKValidateRecordArrayValue(void) +{ + if (verbose) puts("STUB: CKValidateRecordArrayValue called"); + return NULL; +} + +void* CKValueIsAcceptableClass(void) +{ + if (verbose) puts("STUB: CKValueIsAcceptableClass called"); + return NULL; +} + +void* CKValueIsAcceptablePredicateClass(void) +{ + if (verbose) puts("STUB: CKValueIsAcceptablePredicateClass called"); + return NULL; +} + +void* CKWarnForIncorrectServiceIdentity(void) +{ + if (verbose) puts("STUB: CKWarnForIncorrectServiceIdentity called"); + return NULL; +} + +void* CKWarnForInvalidApplicationIdentifier(void) +{ + if (verbose) puts("STUB: CKWarnForInvalidApplicationIdentifier called"); + return NULL; +} + +void* CKWeakLinkClass(void) +{ + if (verbose) puts("STUB: CKWeakLinkClass called"); + return NULL; +} + +void* CKWeakLinkSymbol(void) +{ + if (verbose) puts("STUB: CKWeakLinkSymbol called"); + return NULL; +} + +void* CKXPCSuitableError(void) +{ + if (verbose) puts("STUB: CKXPCSuitableError called"); + return NULL; +} + +void* NSTimeIntervalToClosestXPCActivityInterval(void) +{ + if (verbose) puts("STUB: NSTimeIntervalToClosestXPCActivityInterval called"); + return NULL; +} + +void* _CKCheckArgument(void) +{ + if (verbose) puts("STUB: _CKCheckArgument called"); + return NULL; +} + +void* _CKSimulateCrash(void) +{ + if (verbose) puts("STUB: _CKSimulateCrash called"); + return NULL; +} + +void* ck_call_or_dispatch_async_if_not_key(void) +{ + if (verbose) puts("STUB: ck_call_or_dispatch_async_if_not_key called"); + return NULL; +} + +void* ck_call_or_dispatch_sync_if_not_key(void) +{ + if (verbose) puts("STUB: ck_call_or_dispatch_sync_if_not_key called"); + return NULL; +} + +void* ck_log_asl_level_to_type(void) +{ + if (verbose) puts("STUB: ck_log_asl_level_to_type called"); + return NULL; +} + +void* ck_log_facilities_initailize_static(void) +{ + if (verbose) puts("STUB: ck_log_facilities_initailize_static called"); + return NULL; +} + +void* ck_log_get_asl_level(void) +{ + if (verbose) puts("STUB: ck_log_get_asl_level called"); + return NULL; +} + +void* mmapFileAtPath(void) +{ + if (verbose) puts("STUB: mmapFileAtPath called"); + return NULL; +} + +void* mmapFileDescriptor(void) +{ + if (verbose) puts("STUB: mmapFileDescriptor called"); + return NULL; +} + +void* setCKIsRunningInCloudD(void) +{ + if (verbose) puts("STUB: setCKIsRunningInCloudD called"); + return NULL; +} + +void* setCKIsRunningInTestHost(void) +{ + if (verbose) puts("STUB: setCKIsRunningInTestHost called"); + return NULL; +} + +void* stringForCKErrorCode(void) +{ + if (verbose) puts("STUB: stringForCKErrorCode called"); + return NULL; +} diff --git a/src/frameworks/include/CloudKit b/src/frameworks/include/CloudKit new file mode 120000 index 000000000..a71fb1c51 --- /dev/null +++ b/src/frameworks/include/CloudKit @@ -0,0 +1 @@ +../CloudKit/include/CloudKit/ \ No newline at end of file