diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e61e5e78b..f988553f5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -247,6 +247,8 @@ include_directories(AFTER ${CMAKE_CURRENT_SOURCE_DIR}/OpenDirectory/include ${CMAKE_CURRENT_SOURCE_DIR}/MetalKit/include ${CMAKE_CURRENT_SOURCE_DIR}/CoreLocation/include + ${CMAKE_CURRENT_SOURCE_DIR}/frameworks/include + ${CMAKE_CURRENT_SOURCE_DIR}/private-frameworks/include ) add_subdirectory(external/libkqueue) @@ -461,6 +463,9 @@ add_subdirectory(external/cocotron/CoreGraphics) add_subdirectory(ColorSync) add_subdirectory(CoreLocation) +add_subdirectory(frameworks) +add_subdirectory(private-frameworks) + # /Applications #add_subdirectory(external/TextEdit) diff --git a/src/frameworks/CMakeLists.txt b/src/frameworks/CMakeLists.txt new file mode 100644 index 000000000..ccfaffc1e --- /dev/null +++ b/src/frameworks/CMakeLists.txt @@ -0,0 +1,4 @@ +project(frameworks) + +add_subdirectory(Kerberos) +add_subdirectory(MapKit) diff --git a/src/frameworks/Kerberos/CMakeLists.txt b/src/frameworks/Kerberos/CMakeLists.txt new file mode 100644 index 000000000..9bda83741 --- /dev/null +++ b/src/frameworks/Kerberos/CMakeLists.txt @@ -0,0 +1,16 @@ +project(Kerberos) + +set(DYLIB_COMPAT_VERSION "5.0.0") +set(DYLIB_CURRENT_VERSION "6.0.0") + +add_framework(Kerberos + FAT + CURRENT_VERSION + VERSION "A" + + SOURCES + src/Kerberos.c + + DEPENDENCIES + system +) diff --git a/src/frameworks/Kerberos/include/Kerberos/Kerberos.h b/src/frameworks/Kerberos/include/Kerberos/Kerberos.h new file mode 100644 index 000000000..949335763 --- /dev/null +++ b/src/frameworks/Kerberos/include/Kerberos/Kerberos.h @@ -0,0 +1,792 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU 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 _Kerberos_H_ +#define _Kerberos_H_ + +void* FSp_krb_get_svc_in_tkt(void); +void* FSp_profile_init(void); +void* FSp_profile_init_path(void); +void* FSp_put_svc_key(void); +void* FSp_read_service_key(void); +void* K5ClientGetAuthenticatorForServiceDeprecated(void); +void* K5ClientGetTicketForServiceDeprecated(void); +void* KClientAddCredentialsDeprecated(void); +void* KClientAddRealmMapDeprecated(void); +void* KClientAddServerMapDeprecated(void); +void* KClientAddServiceKey(void); +void* KClientCacheInitialTicketDeprecated(void); +void* KClientDecrypt(void); +void* KClientDecryptCompat(void); +void* KClientDeleteCredentialsDeprecated(void); +void* KClientDeleteRealmMapDeprecated(void); +void* KClientDeleteServerMapDeprecated(void); +void* KClientDeleteSessionDeprecated(void); +void* KClientDisposePrincipal(void); +void* KClientDisposeSession(void); +void* KClientDisposeSessionCompat(void); +void* KClientEncrypt(void); +void* KClientEncryptCompat(void); +void* KClientGetAuthenticatorForService(void); +void* KClientGetCCacheReference(void); +void* KClientGetClientPrincipal(void); +void* KClientGetCredentialsDeprecated(void); +void* KClientGetEncryptedServiceReply(void); +void* KClientGetErrorTextDeprecated(void); +void* KClientGetExpirationTime(void); +void* KClientGetLocalAddress(void); +void* KClientGetLocalRealmDeprecated(void); +void* KClientGetNthCredentialDeprecated(void); +void* KClientGetNthRealmMapDeprecated(void); +void* KClientGetNthServerDeprecated(void); +void* KClientGetNthServerMapDeprecated(void); +void* KClientGetNthServerPortDeprecated(void); +void* KClientGetNthSessionDeprecated(void); +void* KClientGetNumCredentialsDeprecated(void); +void* KClientGetNumSessionsDeprecated(void); +void* KClientGetProtectedServiceReply(void); +void* KClientGetRealmDeprecated(void); +void* KClientGetRemoteAddress(void); +void* KClientGetServerPrincipal(void); +void* KClientGetServiceKey(void); +void* KClientGetSessionKey(void); +void* KClientGetSessionKeyCompat(void); +void* KClientGetSessionUserNameCompat(void); +void* KClientGetTicketForService(void); +void* KClientGetTicketForServiceCompat(void); +void* KClientGetTicketForServiceWithChecksumCompat(void); +void* KClientGetUserNameDeprecated(void); +void* KClientGetVersion(void); +void* KClientKeyFileLogin(void); +void* KClientLogin(void); +void* KClientLoginCompat(void); +void* KClientLogout(void); +void* KClientLogoutCompat(void); +void* KClientMakeSendAuthCompat(void); +void* KClientNewClientSession(void); +void* KClientNewServerSession(void); +void* KClientNewSessionCompat(void); +void* KClientPasswordLogin(void); +void* KClientPasswordLoginCompat(void); +void* KClientPrincipalToV4String(void); +void* KClientPrincipalToV4Triplet(void); +void* KClientProtectIntegrity(void); +void* KClientProtectIntegrityCompat(void); +void* KClientSetClientPrincipal(void); +void* KClientSetKeyFile(void); +void* KClientSetLocalAddress(void); +void* KClientSetLocalRealmDeprecated(void); +void* KClientSetNthServerPortDeprecated(void); +void* KClientSetRemoteAddress(void); +void* KClientSetServerPrincipal(void); +void* KClientStatusCompat(void); +void* KClientV4StringToPrincipal(void); +void* KClientVerifyAuthenticator(void); +void* KClientVerifyEncryptedServiceReply(void); +void* KClientVerifyIntegrity(void); +void* KClientVerifyIntegrityCompat(void); +void* KClientVerifyProtectedServiceReply(void); +void* KClientVerifyReplyTicketCompat(void); +void* KClientVerifyUnencryptedReplyTicketCompat(void); +void* KClientVersionCompat(void); +void* KLAcquireInitialTickets(void); +void* KLAcquireInitialTicketsWithPassword(void); +void* KLAcquireNewInitialTicketCredentialsWithPassword(void); +void* KLAcquireNewInitialTickets(void); +void* KLAcquireNewInitialTicketsWithKeytab(void); +void* KLAcquireNewInitialTicketsWithPassword(void); +void* KLAcquireNewTickets(void); +void* KLAcquireNewTicketsWithPassword(void); +void* KLAcquireTickets(void); +void* KLAcquireTicketsWithPassword(void); +void* KLCacheHasValidTickets(void); +void* KLCancelAllDialogs(void); +void* KLChangePassword(void); +void* KLChangePasswordWithPasswords(void); +void* KLComparePrincipal(void); +void* KLCountKerberosRealms(void); +void* KLCreateLoginOptions(void); +void* KLCreatePrincipalFromKerberos5Principal(void); +void* KLCreatePrincipalFromPrincipal(void); +void* KLCreatePrincipalFromString(void); +void* KLCreatePrincipalFromTriplet(void); +void* KLDestroyTickets(void); +void* KLDisposeLoginOptions(void); +void* KLDisposePrincipal(void); +void* KLDisposeString(void); +void* KLFindKerberosRealmByName(void); +void* KLGetApplicationOptions(void); +void* KLGetDefaultLoginOption(void); +void* KLGetDisplayStringFromPrincipal(void); +void* KLGetErrorString(void); +void* KLGetIdleCallback(void); +void* KLGetKerberosDefaultRealm(void); +void* KLGetKerberosDefaultRealmByName(void); +void* KLGetKerberosRealm(void); +void* KLGetStringFromPrincipal(void); +void* KLGetTripletFromPrincipal(void); +void* KLHandleError(void); +void* KLInsertKerberosRealm(void); +void* KLLastChangedTime(void); +void* KLLoginOptionsSetAddressless(void); +void* KLLoginOptionsSetForwardable(void); +void* KLLoginOptionsSetProxiable(void); +void* KLLoginOptionsSetRenewableLifetime(void); +void* KLLoginOptionsSetServiceName(void); +void* KLLoginOptionsSetTicketLifetime(void); +void* KLLoginOptionsSetTicketStartTime(void); +void* KLRemoveAllKerberosRealms(void); +void* KLRemoveKerberosRealm(void); +void* KLRenewInitialTickets(void); +void* KLSetApplicationOptions(void); +void* KLSetDefaultLoginOption(void); +void* KLSetIdleCallback(void); +void* KLSetKerberosDefaultRealm(void); +void* KLSetKerberosDefaultRealmByName(void); +void* KLSetKerberosRealm(void); +void* KLSetSystemDefaultCache(void); +void* KLStoreNewInitialTicketCredentials(void); +void* KLTicketExpirationTime(void); +void* KLTicketStartTime(void); +void* KLValidateInitialTickets(void); +void* KLVerifyInitialTicketCredentials(void); +void* KLVerifyInitialTickets(void); +void* KPCreatePreferencesFile(void); +void* KPFreeListOfPreferencesFiles(void); +void* KPGetListOfPreferencesFiles(void); +void* KPInitializeWithDefaultKerberosLibraryPreferences(void); +void* KPPreferencesFileIsReadable(void); +void* KPPreferencesFileIsWritable(void); +void* KServerAddKeyCompat(void); +void* KServerGetKeyCompat(void); +void* KServerGetReplyTicketCompat(void); +void* KServerGetSessionTimeRemainingCompat(void); +void* KServerNewSessionCompat(void); +void* KServerVerifyTicketCompat(void); +void* __KLAllowAutomaticPrompting(void); +void* __KLAllowHomeDirectoryAccess(void); +void* __KLAllowRememberPassword(void); +void* __KLCreatePrincipalFromKerberos5Principal(void); +void* __KLCreatePrincipalFromTriplet(void); +void* __KLGetKerberos5PrincipalFromPrincipal(void); +void* __KLGetKeychainPasswordForPrincipal(void); +void* __KLGetTripletFromPrincipal(void); +void* __KLPrincipalIsTicketGrantingService(void); +void* __KLPrincipalSetKeychainPassword(void); +void* __KLPromptMechanism(void); +void* __KLRemoveKeychainPasswordForPrincipal(void); +void* __KLSetApplicationPrompter(void); +void* __KLSetAutomaticPrompting(void); +void* __KLSetHomeDirectoryAccess(void); +void* __KLSetPromptMechanism(void); +void* __KerberosDebugLogLevel(void); +void* __KerberosDebugPrint(void); +void* __KerberosDebugPrintMemory(void); +void* __KerberosDebugPrintSession(void); +void* __KerberosDebugVAPrint(void); +void* __KerberosInternal_krb5int_sendtokdc_debug_handler(void); +void* add_error_table(void); +void* apple_gss_krb5_export_authdata_if_relevant_context(void); +void* apple_gss_krb5_free_authdata_if_relevant(void); +void* cc_close(void); +void* cc_create(void); +void* cc_destroy(void); +void* cc_free_NC_info(void); +void* cc_free_creds(void); +void* cc_free_name(void); +void* cc_free_principal(void); +void* cc_get_NC_info(void); +void* cc_get_change_time(void); +void* cc_get_cred_version(void); +void* cc_get_name(void); +void* cc_get_principal(void); +void* cc_initialize(void); +void* cc_open(void); +void* cc_remove_cred(void); +void* cc_seq_fetch_NCs_begin(void); +void* cc_seq_fetch_NCs_end(void); +void* cc_seq_fetch_NCs_next(void); +void* cc_seq_fetch_creds_begin(void); +void* cc_seq_fetch_creds_end(void); +void* cc_seq_fetch_creds_next(void); +void* cc_set_principal(void); +void* cc_shutdown(void); +void* cc_store(void); +void* com_err(void); +void* com_err_va(void); +void* decomp_ticket(void); +void* dest_all_tkts(void); +void* dest_tkt(void); +void* encode_krb5_as_req(void); +void* error_message(void); +void* get_ad_tkt(void); +void* get_pw_tkt(void); +void* gss_accept_sec_context(void); +void* gss_acquire_cred(void); +void* gss_add_cred(void); +void* gss_add_oid_set_member(void); +void* gss_canonicalize_name(void); +void* gss_compare_name(void); +void* gss_context_time(void); +void* gss_create_empty_oid_set(void); +void* gss_delete_sec_context(void); +void* gss_display_name(void); +void* gss_display_status(void); +void* gss_duplicate_name(void); +void* gss_export_name(void); +void* gss_export_sec_context(void); +void* gss_get_mic(void); +void* gss_import_name(void); +void* gss_import_sec_context(void); +void* gss_indicate_mechs(void); +void* gss_init_sec_context(void); +void* gss_inquire_context(void); +void* gss_inquire_cred(void); +void* gss_inquire_cred_by_mech(void); +void* gss_inquire_mechs_for_name(void); +void* gss_inquire_names_for_mech(void); +void* gss_krb5_ccache_name(void); +void* gss_krb5_copy_ccache(void); +void* gss_krb5_export_lucid_sec_context(void); +void* gss_krb5_free_lucid_sec_context(void); +void* gss_krb5_get_tkt_flags(void); +void* gss_krb5_set_allowable_enctypes(void); +void* gss_krb5_ui(void); +void* gss_oid_to_str(void); +void* gss_process_context_token(void); +void* gss_release_buffer(void); +void* gss_release_cred(void); +void* gss_release_name(void); +void* gss_release_oid(void); +void* gss_release_oid_set(void); +void* gss_seal(void); +void* gss_sign(void); +void* gss_str_to_oid(void); +void* gss_test_oid_set_member(void); +void* gss_unseal(void); +void* gss_unwrap(void); +void* gss_verify(void); +void* gss_verify_mic(void); +void* gss_wrap(void); +void* gss_wrap_size_limit(void); +void* initialize_prof_error_table(void); +void* k_isinst(void); +void* k_isname(void); +void* k_isrealm(void); +void* kim_ccache_compare(void); +void* kim_ccache_copy(void); +void* kim_ccache_create_from_client_identity(void); +void* kim_ccache_create_from_default(void); +void* kim_ccache_create_from_display_name(void); +void* kim_ccache_create_from_keytab(void); +void* kim_ccache_create_from_krb5_ccache(void); +void* kim_ccache_create_from_type_and_name(void); +void* kim_ccache_create_new(void); +void* kim_ccache_create_new_if_needed(void); +void* kim_ccache_create_new_if_needed_with_password(void); +void* kim_ccache_create_new_with_password(void); +void* kim_ccache_destroy(void); +void* kim_ccache_free(void); +void* kim_ccache_get_client_identity(void); +void* kim_ccache_get_display_name(void); +void* kim_ccache_get_expiration_time(void); +void* kim_ccache_get_krb5_ccache(void); +void* kim_ccache_get_name(void); +void* kim_ccache_get_options(void); +void* kim_ccache_get_renewal_expiration_time(void); +void* kim_ccache_get_start_time(void); +void* kim_ccache_get_state(void); +void* kim_ccache_get_type(void); +void* kim_ccache_get_valid_credential(void); +void* kim_ccache_iterator_create(void); +void* kim_ccache_iterator_free(void); +void* kim_ccache_iterator_next(void); +void* kim_ccache_renew(void); +void* kim_ccache_set_default(void); +void* kim_ccache_validate(void); +void* kim_ccache_verify(void); +void* kim_credential_copy(void); +void* kim_credential_create_from_keytab(void); +void* kim_credential_create_from_krb5_creds(void); +void* kim_credential_create_new(void); +void* kim_credential_create_new_with_password(void); +void* kim_credential_free(void); +void* kim_credential_get_client_identity(void); +void* kim_credential_get_expiration_time(void); +void* kim_credential_get_krb5_creds(void); +void* kim_credential_get_options(void); +void* kim_credential_get_renewal_expiration_time(void); +void* kim_credential_get_service_identity(void); +void* kim_credential_get_start_time(void); +void* kim_credential_get_state(void); +void* kim_credential_is_tgt(void); +void* kim_credential_iterator_create(void); +void* kim_credential_iterator_free(void); +void* kim_credential_iterator_next(void); +void* kim_credential_renew(void); +void* kim_credential_store(void); +void* kim_credential_validate(void); +void* kim_credential_verify(void); +void* kim_identity_change_password(void); +void* kim_identity_compare(void); +void* kim_identity_copy(void); +void* kim_identity_create_from_components(void); +void* kim_identity_create_from_krb5_principal(void); +void* kim_identity_create_from_string(void); +void* kim_identity_free(void); +void* kim_identity_get_component_at_index(void); +void* kim_identity_get_components_string(void); +void* kim_identity_get_display_string(void); +void* kim_identity_get_krb5_principal(void); +void* kim_identity_get_number_of_components(void); +void* kim_identity_get_realm(void); +void* kim_identity_get_string(void); +void* kim_library_set_allow_automatic_prompting(void); +void* kim_library_set_allow_home_directory_access(void); +void* kim_library_set_application_name(void); +void* kim_library_set_ui_environment(void); +void* kim_options_copy(void); +void* kim_options_create(void); +void* kim_options_create_from_stream(void); +void* kim_options_free(void); +void* kim_options_get_addressless(void); +void* kim_options_get_forwardable(void); +void* kim_options_get_lifetime(void); +void* kim_options_get_proxiable(void); +void* kim_options_get_renewable(void); +void* kim_options_get_renewal_lifetime(void); +void* kim_options_get_service_name(void); +void* kim_options_get_start_time(void); +void* kim_options_set_addressless(void); +void* kim_options_set_forwardable(void); +void* kim_options_set_lifetime(void); +void* kim_options_set_proxiable(void); +void* kim_options_set_renewable(void); +void* kim_options_set_renewal_lifetime(void); +void* kim_options_set_service_name(void); +void* kim_options_set_start_time(void); +void* kim_options_write_to_stream(void); +void* kim_preferences_add_favorite_identity(void); +void* kim_preferences_copy(void); +void* kim_preferences_create(void); +void* kim_preferences_free(void); +void* kim_preferences_get_client_identity(void); +void* kim_preferences_get_favorite_identity_at_index(void); +void* kim_preferences_get_maximum_lifetime(void); +void* kim_preferences_get_maximum_renewal_lifetime(void); +void* kim_preferences_get_minimum_lifetime(void); +void* kim_preferences_get_minimum_renewal_lifetime(void); +void* kim_preferences_get_number_of_favorite_identities(void); +void* kim_preferences_get_options(void); +void* kim_preferences_get_remember_client_identity(void); +void* kim_preferences_get_remember_options(void); +void* kim_preferences_remove_all_favorite_identities(void); +void* kim_preferences_remove_favorite_identity(void); +void* kim_preferences_set_client_identity(void); +void* kim_preferences_set_maximum_lifetime(void); +void* kim_preferences_set_maximum_renewal_lifetime(void); +void* kim_preferences_set_minimum_lifetime(void); +void* kim_preferences_set_minimum_renewal_lifetime(void); +void* kim_preferences_set_options(void); +void* kim_preferences_set_remember_client_identity(void); +void* kim_preferences_set_remember_options(void); +void* kim_preferences_synchronize(void); +void* kim_selection_hints_copy(void); +void* kim_selection_hints_create(void); +void* kim_selection_hints_create_from_stream(void); +void* kim_selection_hints_forget_identity(void); +void* kim_selection_hints_free(void); +void* kim_selection_hints_get_allow_user_interaction(void); +void* kim_selection_hints_get_explanation(void); +void* kim_selection_hints_get_hint(void); +void* kim_selection_hints_get_identity(void); +void* kim_selection_hints_get_options(void); +void* kim_selection_hints_get_remember_identity(void); +void* kim_selection_hints_remember_identity(void); +void* kim_selection_hints_set_allow_user_interaction(void); +void* kim_selection_hints_set_explanation(void); +void* kim_selection_hints_set_hint(void); +void* kim_selection_hints_set_options(void); +void* kim_selection_hints_set_remember_identity(void); +void* kim_string_compare(void); +void* kim_string_copy(void); +void* kim_string_create_for_last_error(void); +void* kim_string_free(void); +void* kname_parse(void); +void* kname_unparse(void); +void* krb524_convert_creds_kdc(void); +void* krb5_425_conv_principal(void); +void* krb5_524_conv_principal(void); +void* krb5_524_convert_creds(void); +void* krb5_address_compare(void); +void* krb5_address_order(void); +void* krb5_address_search(void); +void* krb5_aname_to_localname(void); +void* krb5_appdefault_boolean(void); +void* krb5_appdefault_string(void); +void* krb5_auth_con_free(void); +void* krb5_auth_con_genaddrs(void); +void* krb5_auth_con_get_checksum_func(void); +void* krb5_auth_con_getaddrs(void); +void* krb5_auth_con_getauthenticator(void); +void* krb5_auth_con_getflags(void); +void* krb5_auth_con_getkey(void); +void* krb5_auth_con_getlocalseqnumber(void); +void* krb5_auth_con_getlocalsubkey(void); +void* krb5_auth_con_getrcache(void); +void* krb5_auth_con_getrecvsubkey(void); +void* krb5_auth_con_getremoteseqnumber(void); +void* krb5_auth_con_getremotesubkey(void); +void* krb5_auth_con_getsendsubkey(void); +void* krb5_auth_con_init(void); +void* krb5_auth_con_initivector(void); +void* krb5_auth_con_set_checksum_func(void); +void* krb5_auth_con_setaddrs(void); +void* krb5_auth_con_setflags(void); +void* krb5_auth_con_setports(void); +void* krb5_auth_con_setrcache(void); +void* krb5_auth_con_setrecvsubkey(void); +void* krb5_auth_con_setsendsubkey(void); +void* krb5_auth_con_setuseruserkey(void); +void* krb5_build_principal(void); +void* krb5_build_principal_alloc_va(void); +void* krb5_build_principal_ext(void); +void* krb5_build_principal_va(void); +void* krb5_c_block_size(void); +void* krb5_c_checksum_length(void); +void* krb5_c_decrypt(void); +void* krb5_c_encrypt(void); +void* krb5_c_encrypt_length(void); +void* krb5_c_enctype_compare(void); +void* krb5_c_free_state(void); +void* krb5_c_init_state(void); +void* krb5_c_is_coll_proof_cksum(void); +void* krb5_c_is_keyed_cksum(void); +void* krb5_c_keyed_checksum_types(void); +void* krb5_c_make_checksum(void); +void* krb5_c_make_random_key(void); +void* krb5_c_random_add_entropy(void); +void* krb5_c_random_make_octets(void); +void* krb5_c_random_os_entropy(void); +void* krb5_c_random_seed(void); +void* krb5_c_string_to_key(void); +void* krb5_c_string_to_key_with_params(void); +void* krb5_c_valid_cksumtype(void); +void* krb5_c_valid_enctype(void); +void* krb5_c_verify_checksum(void); +void* krb5_calculate_checksum(void); +void* krb5_cc_cache_match(void); +void* krb5_cc_close(void); +void* krb5_cc_copy_creds(void); +void* krb5_cc_default(void); +void* krb5_cc_default_name(void); +void* krb5_cc_destroy(void); +void* krb5_cc_end_seq_get(void); +void* krb5_cc_gen_new(void); +void* krb5_cc_get_config(void); +void* krb5_cc_get_name(void); +void* krb5_cc_get_principal(void); +void* krb5_cc_get_type(void); +void* krb5_cc_initialize(void); +void* krb5_cc_last_change_time(void); +void* krb5_cc_lock(void); +void* krb5_cc_move(void); +void* krb5_cc_new_unique(void); +void* krb5_cc_next_cred(void); +void* krb5_cc_remove_cred(void); +void* krb5_cc_resolve(void); +void* krb5_cc_retrieve_cred(void); +void* krb5_cc_set_config(void); +void* krb5_cc_set_default_name(void); +void* krb5_cc_set_flags(void); +void* krb5_cc_start_seq_get(void); +void* krb5_cc_store_cred(void); +void* krb5_cc_unlock(void); +void* krb5_cccol_cursor_free(void); +void* krb5_cccol_cursor_new(void); +void* krb5_cccol_cursor_next(void); +void* krb5_cccol_last_change_time(void); +void* krb5_cccol_lock(void); +void* krb5_cccol_unlock(void); +void* krb5_change_password(void); +void* krb5_checksum_size(void); +void* krb5_cksumtype_to_string(void); +void* krb5_clear_error_message(void); +void* krb5_copy_addresses(void); +void* krb5_copy_authdata(void); +void* krb5_copy_authenticator(void); +void* krb5_copy_checksum(void); +void* krb5_copy_context(void); +void* krb5_copy_creds(void); +void* krb5_copy_data(void); +void* krb5_copy_keyblock(void); +void* krb5_copy_keyblock_contents(void); +void* krb5_copy_principal(void); +void* krb5_copy_ticket(void); +void* krb5_decode_ticket(void); +void* krb5_decrypt(void); +void* krb5_deltat_to_string(void); +void* krb5_eblock_enctype(void); +void* krb5_encrypt(void); +void* krb5_encrypt_size(void); +void* krb5_enctype_to_string(void); +void* krb5_finish_key(void); +void* krb5_finish_random_key(void); +void* krb5_free_addresses(void); +void* krb5_free_ap_rep_enc_part(void); +void* krb5_free_authdata(void); +void* krb5_free_authenticator(void); +void* krb5_free_checksum(void); +void* krb5_free_checksum_contents(void); +void* krb5_free_cksumtypes(void); +void* krb5_free_config_files(void); +void* krb5_free_context(void); +void* krb5_free_cred_contents(void); +void* krb5_free_creds(void); +void* krb5_free_data(void); +void* krb5_free_data_contents(void); +void* krb5_free_default_realm(void); +void* krb5_free_enc_tkt_part(void); +void* krb5_free_error(void); +void* krb5_free_error_message(void); +void* krb5_free_host_realm(void); +void* krb5_free_keyblock(void); +void* krb5_free_keyblock_contents(void); +void* krb5_free_keytab_entry_contents(void); +void* krb5_free_krbhst(void); +void* krb5_free_principal(void); +void* krb5_free_tgt_creds(void); +void* krb5_free_ticket(void); +void* krb5_free_unparsed_name(void); +void* krb5_fwd_tgt_creds(void); +void* krb5_get_credentials(void); +void* krb5_get_credentials_renew(void); +void* krb5_get_credentials_validate(void); +void* krb5_get_default_config_files(void); +void* krb5_get_default_realm(void); +void* krb5_get_error_message(void); +void* krb5_get_host_realm(void); +void* krb5_get_in_tkt(void); +void* krb5_get_in_tkt_with_keytab(void); +void* krb5_get_in_tkt_with_password(void); +void* krb5_get_in_tkt_with_skey(void); +void* krb5_get_init_creds_keytab(void); +void* krb5_get_init_creds_opt_alloc(void); +void* krb5_get_init_creds_opt_free(void); +void* krb5_get_init_creds_opt_init(void); +void* krb5_get_init_creds_opt_set_address_list(void); +void* krb5_get_init_creds_opt_set_canonicalize(void); +void* krb5_get_init_creds_opt_set_change_password_prompt(void); +void* krb5_get_init_creds_opt_set_etype_list(void); +void* krb5_get_init_creds_opt_set_forwardable(void); +void* krb5_get_init_creds_opt_set_pa(void); +void* krb5_get_init_creds_opt_set_preauth_list(void); +void* krb5_get_init_creds_opt_set_process_last_req(void); +void* krb5_get_init_creds_opt_set_proxiable(void); +void* krb5_get_init_creds_opt_set_renew_life(void); +void* krb5_get_init_creds_opt_set_tkt_life(void); +void* krb5_get_init_creds_password(void); +void* krb5_get_krbhst(void); +void* krb5_get_permitted_enctypes(void); +void* krb5_get_profile(void); +void* krb5_get_prompt_types(void); +void* krb5_get_realm_domain(void); +void* krb5_get_renewed_creds(void); +void* krb5_get_server_rcache(void); +void* krb5_get_time_offsets(void); +void* krb5_get_validated_creds(void); +void* krb5_gss_register_acceptor_identity(void); +void* krb5_gss_use_kdc_context(void); +void* krb5_init_context(void); +void* krb5_init_keyblock(void); +void* krb5_init_random_key(void); +void* krb5_init_secure_context(void); +void* krb5_ipc_client_clear_target(void); +void* krb5_ipc_client_set_target_uid(void); +void* krb5_is_config_principal(void); +void* krb5_is_referral_realm(void); +void* krb5_is_thread_safe(void); +void* krb5_kt_add_entry(void); +void* krb5_kt_close(void); +void* krb5_kt_default(void); +void* krb5_kt_default_name(void); +void* krb5_kt_end_seq_get(void); +void* krb5_kt_get_entry(void); +void* krb5_kt_get_name(void); +void* krb5_kt_get_type(void); +void* krb5_kt_next_entry(void); +void* krb5_kt_read_service_key(void); +void* krb5_kt_remove_entry(void); +void* krb5_kt_resolve(void); +void* krb5_kt_start_seq_get(void); +void* krb5_kuserok(void); +void* krb5_mk_1cred(void); +void* krb5_mk_error(void); +void* krb5_mk_ncred(void); +void* krb5_mk_priv(void); +void* krb5_mk_rep(void); +void* krb5_mk_req(void); +void* krb5_mk_req_extended(void); +void* krb5_mk_safe(void); +void* krb5_os_localaddr(void); +void* krb5_parse_name(void); +void* krb5_parse_name_flags(void); +void* krb5_pkinit_cert_hash_str(void); +void* krb5_pkinit_get_client_cert(void); +void* krb5_pkinit_get_client_cert_db(void); +void* krb5_pkinit_get_kdc_cert(void); +void* krb5_pkinit_get_kdc_cert_db(void); +void* krb5_pkinit_have_client_cert(void); +void* krb5_pkinit_release_cert(void); +void* krb5_pkinit_release_cert_db(void); +void* krb5_pkinit_set_client_cert(void); +void* krb5_principal2salt(void); +void* krb5_principal_compare(void); +void* krb5_process_key(void); +void* krb5_prompter_posix(void); +void* krb5_random_key(void); +void* krb5_rd_cred(void); +void* krb5_rd_error(void); +void* krb5_rd_priv(void); +void* krb5_rd_rep(void); +void* krb5_rd_req(void); +void* krb5_rd_safe(void); +void* krb5_read_password(void); +void* krb5_realm_compare(void); +void* krb5_recvauth(void); +void* krb5_recvauth_version(void); +void* krb5_salttype_to_string(void); +void* krb5_sendauth(void); +void* krb5_server_decrypt_ticket_keytab(void); +void* krb5_set_default_realm(void); +void* krb5_set_default_tgs_enctypes(void); +void* krb5_set_default_tgs_ktypes(void); +void* krb5_set_error_message(void); +void* krb5_set_password(void); +void* krb5_set_password_using_ccache(void); +void* krb5_set_principal_realm(void); +void* krb5_set_real_time(void); +void* krb5_sname_to_principal(void); +void* krb5_string_to_cksumtype(void); +void* krb5_string_to_deltat(void); +void* krb5_string_to_enctype(void); +void* krb5_string_to_key(void); +void* krb5_string_to_salttype(void); +void* krb5_string_to_timestamp(void); +void* krb5_timeofday(void); +void* krb5_timestamp_to_sfstring(void); +void* krb5_timestamp_to_string(void); +void* krb5_unparse_name(void); +void* krb5_unparse_name_ext(void); +void* krb5_unparse_name_flags(void); +void* krb5_unparse_name_flags_ext(void); +void* krb5_us_timeofday(void); +void* krb5_use_enctype(void); +void* krb5_verify_checksum(void); +void* krb5_verify_init_creds(void); +void* krb5_verify_init_creds_opt_init(void); +void* krb5_verify_init_creds_opt_set_ap_req_nofail(void); +void* krb5_vset_error_message(void); +void* krb5int_accessor(void); +void* krb5int_freeaddrinfo(void); +void* krb5int_gai_strerror(void); +void* krb5int_getaddrinfo(void); +void* krb5int_gmt_mktime(void); +void* krb5int_init_context_kdc(void); +void* krb5int_pkinit_auth_pack_decode(void); +void* krb5int_pkinit_create_cms_msg(void); +void* krb5int_pkinit_pa_pk_as_rep_encode(void); +void* krb5int_pkinit_pa_pk_as_req_decode(void); +void* krb5int_pkinit_parse_cms_msg(void); +void* krb5int_pkinit_reply_key_pack_encode(void); +void* krb__get_srvtabname(void); +void* krb_change_password(void); +void* krb_check_auth(void); +void* krb_delete_cred(void); +void* krb_get_admhst(void); +void* krb_get_cred(void); +void* krb_get_err_text(void); +void* krb_get_in_tkt(void); +void* krb_get_in_tkt_creds(void); +void* krb_get_krbhst(void); +void* krb_get_lrealm(void); +void* krb_get_nth_cred(void); +void* krb_get_num_cred(void); +void* krb_get_phost(void); +void* krb_get_profile(void); +void* krb_get_pw_in_tkt(void); +void* krb_get_pw_in_tkt_creds(void); +void* krb_get_svc_in_tkt(void); +void* krb_get_tf_fullname(void); +void* krb_get_tf_realm(void); +void* krb_get_ticket_for_service(void); +void* krb_life_to_time(void); +void* krb_mk_auth(void); +void* krb_mk_err(void); +void* krb_mk_priv(void); +void* krb_mk_req(void); +void* krb_mk_req_creds(void); +void* krb_mk_safe(void); +void* krb_rd_err(void); +void* krb_rd_priv(void); +void* krb_rd_req(void); +void* krb_rd_req_int(void); +void* krb_rd_safe(void); +void* krb_realmofhost(void); +void* krb_recvauth(void); +void* krb_sendauth(void); +void* krb_set_lifetime(void); +void* krb_set_tkt_string(void); +void* krb_time_to_life(void); +void* kuserok(void); +void* profile_abandon(void); +void* profile_add_relation(void); +void* profile_clear_relation(void); +void* profile_configuration_updated(void); +void* profile_flush(void); +void* profile_flush_to_buffer(void); +void* profile_flush_to_file(void); +void* profile_free_buffer(void); +void* profile_free_list(void); +void* profile_get_boolean(void); +void* profile_get_integer(void); +void* profile_get_relation_names(void); +void* profile_get_string(void); +void* profile_get_subsection_names(void); +void* profile_get_values(void); +void* profile_init(void); +void* profile_init_path(void); +void* profile_is_modified(void); +void* profile_is_writable(void); +void* profile_iterator(void); +void* profile_iterator_create(void); +void* profile_iterator_free(void); +void* profile_release(void); +void* profile_release_string(void); +void* profile_rename_section(void); +void* profile_update_relation(void); +void* put_svc_key(void); +void* read_service_key(void); +void* remove_error_table(void); +void* reset_com_err_hook(void); +void* set_com_err_hook(void); +void* tkt_string(void); + +#endif diff --git a/src/frameworks/Kerberos/src/Kerberos.c b/src/frameworks/Kerberos/src/Kerberos.c new file mode 100644 index 000000000..0f984092f --- /dev/null +++ b/src/frameworks/Kerberos/src/Kerberos.c @@ -0,0 +1,4632 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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* FSp_krb_get_svc_in_tkt(void) +{ + if (verbose) puts("STUB: FSp_krb_get_svc_in_tkt called"); + return NULL; +} + +void* FSp_profile_init(void) +{ + if (verbose) puts("STUB: FSp_profile_init called"); + return NULL; +} + +void* FSp_profile_init_path(void) +{ + if (verbose) puts("STUB: FSp_profile_init_path called"); + return NULL; +} + +void* FSp_put_svc_key(void) +{ + if (verbose) puts("STUB: FSp_put_svc_key called"); + return NULL; +} + +void* FSp_read_service_key(void) +{ + if (verbose) puts("STUB: FSp_read_service_key called"); + return NULL; +} + +void* K5ClientGetAuthenticatorForServiceDeprecated(void) +{ + if (verbose) puts("STUB: K5ClientGetAuthenticatorForServiceDeprecated called"); + return NULL; +} + +void* K5ClientGetTicketForServiceDeprecated(void) +{ + if (verbose) puts("STUB: K5ClientGetTicketForServiceDeprecated called"); + return NULL; +} + +void* KClientAddCredentialsDeprecated(void) +{ + if (verbose) puts("STUB: KClientAddCredentialsDeprecated called"); + return NULL; +} + +void* KClientAddRealmMapDeprecated(void) +{ + if (verbose) puts("STUB: KClientAddRealmMapDeprecated called"); + return NULL; +} + +void* KClientAddServerMapDeprecated(void) +{ + if (verbose) puts("STUB: KClientAddServerMapDeprecated called"); + return NULL; +} + +void* KClientAddServiceKey(void) +{ + if (verbose) puts("STUB: KClientAddServiceKey called"); + return NULL; +} + +void* KClientCacheInitialTicketDeprecated(void) +{ + if (verbose) puts("STUB: KClientCacheInitialTicketDeprecated called"); + return NULL; +} + +void* KClientDecrypt(void) +{ + if (verbose) puts("STUB: KClientDecrypt called"); + return NULL; +} + +void* KClientDecryptCompat(void) +{ + if (verbose) puts("STUB: KClientDecryptCompat called"); + return NULL; +} + +void* KClientDeleteCredentialsDeprecated(void) +{ + if (verbose) puts("STUB: KClientDeleteCredentialsDeprecated called"); + return NULL; +} + +void* KClientDeleteRealmMapDeprecated(void) +{ + if (verbose) puts("STUB: KClientDeleteRealmMapDeprecated called"); + return NULL; +} + +void* KClientDeleteServerMapDeprecated(void) +{ + if (verbose) puts("STUB: KClientDeleteServerMapDeprecated called"); + return NULL; +} + +void* KClientDeleteSessionDeprecated(void) +{ + if (verbose) puts("STUB: KClientDeleteSessionDeprecated called"); + return NULL; +} + +void* KClientDisposePrincipal(void) +{ + if (verbose) puts("STUB: KClientDisposePrincipal called"); + return NULL; +} + +void* KClientDisposeSession(void) +{ + if (verbose) puts("STUB: KClientDisposeSession called"); + return NULL; +} + +void* KClientDisposeSessionCompat(void) +{ + if (verbose) puts("STUB: KClientDisposeSessionCompat called"); + return NULL; +} + +void* KClientEncrypt(void) +{ + if (verbose) puts("STUB: KClientEncrypt called"); + return NULL; +} + +void* KClientEncryptCompat(void) +{ + if (verbose) puts("STUB: KClientEncryptCompat called"); + return NULL; +} + +void* KClientGetAuthenticatorForService(void) +{ + if (verbose) puts("STUB: KClientGetAuthenticatorForService called"); + return NULL; +} + +void* KClientGetCCacheReference(void) +{ + if (verbose) puts("STUB: KClientGetCCacheReference called"); + return NULL; +} + +void* KClientGetClientPrincipal(void) +{ + if (verbose) puts("STUB: KClientGetClientPrincipal called"); + return NULL; +} + +void* KClientGetCredentialsDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetCredentialsDeprecated called"); + return NULL; +} + +void* KClientGetEncryptedServiceReply(void) +{ + if (verbose) puts("STUB: KClientGetEncryptedServiceReply called"); + return NULL; +} + +void* KClientGetErrorTextDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetErrorTextDeprecated called"); + return NULL; +} + +void* KClientGetExpirationTime(void) +{ + if (verbose) puts("STUB: KClientGetExpirationTime called"); + return NULL; +} + +void* KClientGetLocalAddress(void) +{ + if (verbose) puts("STUB: KClientGetLocalAddress called"); + return NULL; +} + +void* KClientGetLocalRealmDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetLocalRealmDeprecated called"); + return NULL; +} + +void* KClientGetNthCredentialDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNthCredentialDeprecated called"); + return NULL; +} + +void* KClientGetNthRealmMapDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNthRealmMapDeprecated called"); + return NULL; +} + +void* KClientGetNthServerDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNthServerDeprecated called"); + return NULL; +} + +void* KClientGetNthServerMapDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNthServerMapDeprecated called"); + return NULL; +} + +void* KClientGetNthServerPortDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNthServerPortDeprecated called"); + return NULL; +} + +void* KClientGetNthSessionDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNthSessionDeprecated called"); + return NULL; +} + +void* KClientGetNumCredentialsDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNumCredentialsDeprecated called"); + return NULL; +} + +void* KClientGetNumSessionsDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetNumSessionsDeprecated called"); + return NULL; +} + +void* KClientGetProtectedServiceReply(void) +{ + if (verbose) puts("STUB: KClientGetProtectedServiceReply called"); + return NULL; +} + +void* KClientGetRealmDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetRealmDeprecated called"); + return NULL; +} + +void* KClientGetRemoteAddress(void) +{ + if (verbose) puts("STUB: KClientGetRemoteAddress called"); + return NULL; +} + +void* KClientGetServerPrincipal(void) +{ + if (verbose) puts("STUB: KClientGetServerPrincipal called"); + return NULL; +} + +void* KClientGetServiceKey(void) +{ + if (verbose) puts("STUB: KClientGetServiceKey called"); + return NULL; +} + +void* KClientGetSessionKey(void) +{ + if (verbose) puts("STUB: KClientGetSessionKey called"); + return NULL; +} + +void* KClientGetSessionKeyCompat(void) +{ + if (verbose) puts("STUB: KClientGetSessionKeyCompat called"); + return NULL; +} + +void* KClientGetSessionUserNameCompat(void) +{ + if (verbose) puts("STUB: KClientGetSessionUserNameCompat called"); + return NULL; +} + +void* KClientGetTicketForService(void) +{ + if (verbose) puts("STUB: KClientGetTicketForService called"); + return NULL; +} + +void* KClientGetTicketForServiceCompat(void) +{ + if (verbose) puts("STUB: KClientGetTicketForServiceCompat called"); + return NULL; +} + +void* KClientGetTicketForServiceWithChecksumCompat(void) +{ + if (verbose) puts("STUB: KClientGetTicketForServiceWithChecksumCompat called"); + return NULL; +} + +void* KClientGetUserNameDeprecated(void) +{ + if (verbose) puts("STUB: KClientGetUserNameDeprecated called"); + return NULL; +} + +void* KClientGetVersion(void) +{ + if (verbose) puts("STUB: KClientGetVersion called"); + return NULL; +} + +void* KClientKeyFileLogin(void) +{ + if (verbose) puts("STUB: KClientKeyFileLogin called"); + return NULL; +} + +void* KClientLogin(void) +{ + if (verbose) puts("STUB: KClientLogin called"); + return NULL; +} + +void* KClientLoginCompat(void) +{ + if (verbose) puts("STUB: KClientLoginCompat called"); + return NULL; +} + +void* KClientLogout(void) +{ + if (verbose) puts("STUB: KClientLogout called"); + return NULL; +} + +void* KClientLogoutCompat(void) +{ + if (verbose) puts("STUB: KClientLogoutCompat called"); + return NULL; +} + +void* KClientMakeSendAuthCompat(void) +{ + if (verbose) puts("STUB: KClientMakeSendAuthCompat called"); + return NULL; +} + +void* KClientNewClientSession(void) +{ + if (verbose) puts("STUB: KClientNewClientSession called"); + return NULL; +} + +void* KClientNewServerSession(void) +{ + if (verbose) puts("STUB: KClientNewServerSession called"); + return NULL; +} + +void* KClientNewSessionCompat(void) +{ + if (verbose) puts("STUB: KClientNewSessionCompat called"); + return NULL; +} + +void* KClientPasswordLogin(void) +{ + if (verbose) puts("STUB: KClientPasswordLogin called"); + return NULL; +} + +void* KClientPasswordLoginCompat(void) +{ + if (verbose) puts("STUB: KClientPasswordLoginCompat called"); + return NULL; +} + +void* KClientPrincipalToV4String(void) +{ + if (verbose) puts("STUB: KClientPrincipalToV4String called"); + return NULL; +} + +void* KClientPrincipalToV4Triplet(void) +{ + if (verbose) puts("STUB: KClientPrincipalToV4Triplet called"); + return NULL; +} + +void* KClientProtectIntegrity(void) +{ + if (verbose) puts("STUB: KClientProtectIntegrity called"); + return NULL; +} + +void* KClientProtectIntegrityCompat(void) +{ + if (verbose) puts("STUB: KClientProtectIntegrityCompat called"); + return NULL; +} + +void* KClientSetClientPrincipal(void) +{ + if (verbose) puts("STUB: KClientSetClientPrincipal called"); + return NULL; +} + +void* KClientSetKeyFile(void) +{ + if (verbose) puts("STUB: KClientSetKeyFile called"); + return NULL; +} + +void* KClientSetLocalAddress(void) +{ + if (verbose) puts("STUB: KClientSetLocalAddress called"); + return NULL; +} + +void* KClientSetLocalRealmDeprecated(void) +{ + if (verbose) puts("STUB: KClientSetLocalRealmDeprecated called"); + return NULL; +} + +void* KClientSetNthServerPortDeprecated(void) +{ + if (verbose) puts("STUB: KClientSetNthServerPortDeprecated called"); + return NULL; +} + +void* KClientSetRemoteAddress(void) +{ + if (verbose) puts("STUB: KClientSetRemoteAddress called"); + return NULL; +} + +void* KClientSetServerPrincipal(void) +{ + if (verbose) puts("STUB: KClientSetServerPrincipal called"); + return NULL; +} + +void* KClientStatusCompat(void) +{ + if (verbose) puts("STUB: KClientStatusCompat called"); + return NULL; +} + +void* KClientV4StringToPrincipal(void) +{ + if (verbose) puts("STUB: KClientV4StringToPrincipal called"); + return NULL; +} + +void* KClientVerifyAuthenticator(void) +{ + if (verbose) puts("STUB: KClientVerifyAuthenticator called"); + return NULL; +} + +void* KClientVerifyEncryptedServiceReply(void) +{ + if (verbose) puts("STUB: KClientVerifyEncryptedServiceReply called"); + return NULL; +} + +void* KClientVerifyIntegrity(void) +{ + if (verbose) puts("STUB: KClientVerifyIntegrity called"); + return NULL; +} + +void* KClientVerifyIntegrityCompat(void) +{ + if (verbose) puts("STUB: KClientVerifyIntegrityCompat called"); + return NULL; +} + +void* KClientVerifyProtectedServiceReply(void) +{ + if (verbose) puts("STUB: KClientVerifyProtectedServiceReply called"); + return NULL; +} + +void* KClientVerifyReplyTicketCompat(void) +{ + if (verbose) puts("STUB: KClientVerifyReplyTicketCompat called"); + return NULL; +} + +void* KClientVerifyUnencryptedReplyTicketCompat(void) +{ + if (verbose) puts("STUB: KClientVerifyUnencryptedReplyTicketCompat called"); + return NULL; +} + +void* KClientVersionCompat(void) +{ + if (verbose) puts("STUB: KClientVersionCompat called"); + return NULL; +} + +void* KLAcquireInitialTickets(void) +{ + if (verbose) puts("STUB: KLAcquireInitialTickets called"); + return NULL; +} + +void* KLAcquireInitialTicketsWithPassword(void) +{ + if (verbose) puts("STUB: KLAcquireInitialTicketsWithPassword called"); + return NULL; +} + +void* KLAcquireNewInitialTicketCredentialsWithPassword(void) +{ + if (verbose) puts("STUB: KLAcquireNewInitialTicketCredentialsWithPassword called"); + return NULL; +} + +void* KLAcquireNewInitialTickets(void) +{ + if (verbose) puts("STUB: KLAcquireNewInitialTickets called"); + return NULL; +} + +void* KLAcquireNewInitialTicketsWithKeytab(void) +{ + if (verbose) puts("STUB: KLAcquireNewInitialTicketsWithKeytab called"); + return NULL; +} + +void* KLAcquireNewInitialTicketsWithPassword(void) +{ + if (verbose) puts("STUB: KLAcquireNewInitialTicketsWithPassword called"); + return NULL; +} + +void* KLAcquireNewTickets(void) +{ + if (verbose) puts("STUB: KLAcquireNewTickets called"); + return NULL; +} + +void* KLAcquireNewTicketsWithPassword(void) +{ + if (verbose) puts("STUB: KLAcquireNewTicketsWithPassword called"); + return NULL; +} + +void* KLAcquireTickets(void) +{ + if (verbose) puts("STUB: KLAcquireTickets called"); + return NULL; +} + +void* KLAcquireTicketsWithPassword(void) +{ + if (verbose) puts("STUB: KLAcquireTicketsWithPassword called"); + return NULL; +} + +void* KLCacheHasValidTickets(void) +{ + if (verbose) puts("STUB: KLCacheHasValidTickets called"); + return NULL; +} + +void* KLCancelAllDialogs(void) +{ + if (verbose) puts("STUB: KLCancelAllDialogs called"); + return NULL; +} + +void* KLChangePassword(void) +{ + if (verbose) puts("STUB: KLChangePassword called"); + return NULL; +} + +void* KLChangePasswordWithPasswords(void) +{ + if (verbose) puts("STUB: KLChangePasswordWithPasswords called"); + return NULL; +} + +void* KLComparePrincipal(void) +{ + if (verbose) puts("STUB: KLComparePrincipal called"); + return NULL; +} + +void* KLCountKerberosRealms(void) +{ + if (verbose) puts("STUB: KLCountKerberosRealms called"); + return NULL; +} + +void* KLCreateLoginOptions(void) +{ + if (verbose) puts("STUB: KLCreateLoginOptions called"); + return NULL; +} + +void* KLCreatePrincipalFromKerberos5Principal(void) +{ + if (verbose) puts("STUB: KLCreatePrincipalFromKerberos5Principal called"); + return NULL; +} + +void* KLCreatePrincipalFromPrincipal(void) +{ + if (verbose) puts("STUB: KLCreatePrincipalFromPrincipal called"); + return NULL; +} + +void* KLCreatePrincipalFromString(void) +{ + if (verbose) puts("STUB: KLCreatePrincipalFromString called"); + return NULL; +} + +void* KLCreatePrincipalFromTriplet(void) +{ + if (verbose) puts("STUB: KLCreatePrincipalFromTriplet called"); + return NULL; +} + +void* KLDestroyTickets(void) +{ + if (verbose) puts("STUB: KLDestroyTickets called"); + return NULL; +} + +void* KLDisposeLoginOptions(void) +{ + if (verbose) puts("STUB: KLDisposeLoginOptions called"); + return NULL; +} + +void* KLDisposePrincipal(void) +{ + if (verbose) puts("STUB: KLDisposePrincipal called"); + return NULL; +} + +void* KLDisposeString(void) +{ + if (verbose) puts("STUB: KLDisposeString called"); + return NULL; +} + +void* KLFindKerberosRealmByName(void) +{ + if (verbose) puts("STUB: KLFindKerberosRealmByName called"); + return NULL; +} + +void* KLGetApplicationOptions(void) +{ + if (verbose) puts("STUB: KLGetApplicationOptions called"); + return NULL; +} + +void* KLGetDefaultLoginOption(void) +{ + if (verbose) puts("STUB: KLGetDefaultLoginOption called"); + return NULL; +} + +void* KLGetDisplayStringFromPrincipal(void) +{ + if (verbose) puts("STUB: KLGetDisplayStringFromPrincipal called"); + return NULL; +} + +void* KLGetErrorString(void) +{ + if (verbose) puts("STUB: KLGetErrorString called"); + return NULL; +} + +void* KLGetIdleCallback(void) +{ + if (verbose) puts("STUB: KLGetIdleCallback called"); + return NULL; +} + +void* KLGetKerberosDefaultRealm(void) +{ + if (verbose) puts("STUB: KLGetKerberosDefaultRealm called"); + return NULL; +} + +void* KLGetKerberosDefaultRealmByName(void) +{ + if (verbose) puts("STUB: KLGetKerberosDefaultRealmByName called"); + return NULL; +} + +void* KLGetKerberosRealm(void) +{ + if (verbose) puts("STUB: KLGetKerberosRealm called"); + return NULL; +} + +void* KLGetStringFromPrincipal(void) +{ + if (verbose) puts("STUB: KLGetStringFromPrincipal called"); + return NULL; +} + +void* KLGetTripletFromPrincipal(void) +{ + if (verbose) puts("STUB: KLGetTripletFromPrincipal called"); + return NULL; +} + +void* KLHandleError(void) +{ + if (verbose) puts("STUB: KLHandleError called"); + return NULL; +} + +void* KLInsertKerberosRealm(void) +{ + if (verbose) puts("STUB: KLInsertKerberosRealm called"); + return NULL; +} + +void* KLLastChangedTime(void) +{ + if (verbose) puts("STUB: KLLastChangedTime called"); + return NULL; +} + +void* KLLoginOptionsSetAddressless(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetAddressless called"); + return NULL; +} + +void* KLLoginOptionsSetForwardable(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetForwardable called"); + return NULL; +} + +void* KLLoginOptionsSetProxiable(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetProxiable called"); + return NULL; +} + +void* KLLoginOptionsSetRenewableLifetime(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetRenewableLifetime called"); + return NULL; +} + +void* KLLoginOptionsSetServiceName(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetServiceName called"); + return NULL; +} + +void* KLLoginOptionsSetTicketLifetime(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetTicketLifetime called"); + return NULL; +} + +void* KLLoginOptionsSetTicketStartTime(void) +{ + if (verbose) puts("STUB: KLLoginOptionsSetTicketStartTime called"); + return NULL; +} + +void* KLRemoveAllKerberosRealms(void) +{ + if (verbose) puts("STUB: KLRemoveAllKerberosRealms called"); + return NULL; +} + +void* KLRemoveKerberosRealm(void) +{ + if (verbose) puts("STUB: KLRemoveKerberosRealm called"); + return NULL; +} + +void* KLRenewInitialTickets(void) +{ + if (verbose) puts("STUB: KLRenewInitialTickets called"); + return NULL; +} + +void* KLSetApplicationOptions(void) +{ + if (verbose) puts("STUB: KLSetApplicationOptions called"); + return NULL; +} + +void* KLSetDefaultLoginOption(void) +{ + if (verbose) puts("STUB: KLSetDefaultLoginOption called"); + return NULL; +} + +void* KLSetIdleCallback(void) +{ + if (verbose) puts("STUB: KLSetIdleCallback called"); + return NULL; +} + +void* KLSetKerberosDefaultRealm(void) +{ + if (verbose) puts("STUB: KLSetKerberosDefaultRealm called"); + return NULL; +} + +void* KLSetKerberosDefaultRealmByName(void) +{ + if (verbose) puts("STUB: KLSetKerberosDefaultRealmByName called"); + return NULL; +} + +void* KLSetKerberosRealm(void) +{ + if (verbose) puts("STUB: KLSetKerberosRealm called"); + return NULL; +} + +void* KLSetSystemDefaultCache(void) +{ + if (verbose) puts("STUB: KLSetSystemDefaultCache called"); + return NULL; +} + +void* KLStoreNewInitialTicketCredentials(void) +{ + if (verbose) puts("STUB: KLStoreNewInitialTicketCredentials called"); + return NULL; +} + +void* KLTicketExpirationTime(void) +{ + if (verbose) puts("STUB: KLTicketExpirationTime called"); + return NULL; +} + +void* KLTicketStartTime(void) +{ + if (verbose) puts("STUB: KLTicketStartTime called"); + return NULL; +} + +void* KLValidateInitialTickets(void) +{ + if (verbose) puts("STUB: KLValidateInitialTickets called"); + return NULL; +} + +void* KLVerifyInitialTicketCredentials(void) +{ + if (verbose) puts("STUB: KLVerifyInitialTicketCredentials called"); + return NULL; +} + +void* KLVerifyInitialTickets(void) +{ + if (verbose) puts("STUB: KLVerifyInitialTickets called"); + return NULL; +} + +void* KPCreatePreferencesFile(void) +{ + if (verbose) puts("STUB: KPCreatePreferencesFile called"); + return NULL; +} + +void* KPFreeListOfPreferencesFiles(void) +{ + if (verbose) puts("STUB: KPFreeListOfPreferencesFiles called"); + return NULL; +} + +void* KPGetListOfPreferencesFiles(void) +{ + if (verbose) puts("STUB: KPGetListOfPreferencesFiles called"); + return NULL; +} + +void* KPInitializeWithDefaultKerberosLibraryPreferences(void) +{ + if (verbose) puts("STUB: KPInitializeWithDefaultKerberosLibraryPreferences called"); + return NULL; +} + +void* KPPreferencesFileIsReadable(void) +{ + if (verbose) puts("STUB: KPPreferencesFileIsReadable called"); + return NULL; +} + +void* KPPreferencesFileIsWritable(void) +{ + if (verbose) puts("STUB: KPPreferencesFileIsWritable called"); + return NULL; +} + +void* KServerAddKeyCompat(void) +{ + if (verbose) puts("STUB: KServerAddKeyCompat called"); + return NULL; +} + +void* KServerGetKeyCompat(void) +{ + if (verbose) puts("STUB: KServerGetKeyCompat called"); + return NULL; +} + +void* KServerGetReplyTicketCompat(void) +{ + if (verbose) puts("STUB: KServerGetReplyTicketCompat called"); + return NULL; +} + +void* KServerGetSessionTimeRemainingCompat(void) +{ + if (verbose) puts("STUB: KServerGetSessionTimeRemainingCompat called"); + return NULL; +} + +void* KServerNewSessionCompat(void) +{ + if (verbose) puts("STUB: KServerNewSessionCompat called"); + return NULL; +} + +void* KServerVerifyTicketCompat(void) +{ + if (verbose) puts("STUB: KServerVerifyTicketCompat called"); + return NULL; +} + +void* __KLAllowAutomaticPrompting(void) +{ + if (verbose) puts("STUB: __KLAllowAutomaticPrompting called"); + return NULL; +} + +void* __KLAllowHomeDirectoryAccess(void) +{ + if (verbose) puts("STUB: __KLAllowHomeDirectoryAccess called"); + return NULL; +} + +void* __KLAllowRememberPassword(void) +{ + if (verbose) puts("STUB: __KLAllowRememberPassword called"); + return NULL; +} + +void* __KLCreatePrincipalFromKerberos5Principal(void) +{ + if (verbose) puts("STUB: __KLCreatePrincipalFromKerberos5Principal called"); + return NULL; +} + +void* __KLCreatePrincipalFromTriplet(void) +{ + if (verbose) puts("STUB: __KLCreatePrincipalFromTriplet called"); + return NULL; +} + +void* __KLGetKerberos5PrincipalFromPrincipal(void) +{ + if (verbose) puts("STUB: __KLGetKerberos5PrincipalFromPrincipal called"); + return NULL; +} + +void* __KLGetKeychainPasswordForPrincipal(void) +{ + if (verbose) puts("STUB: __KLGetKeychainPasswordForPrincipal called"); + return NULL; +} + +void* __KLGetTripletFromPrincipal(void) +{ + if (verbose) puts("STUB: __KLGetTripletFromPrincipal called"); + return NULL; +} + +void* __KLPrincipalIsTicketGrantingService(void) +{ + if (verbose) puts("STUB: __KLPrincipalIsTicketGrantingService called"); + return NULL; +} + +void* __KLPrincipalSetKeychainPassword(void) +{ + if (verbose) puts("STUB: __KLPrincipalSetKeychainPassword called"); + return NULL; +} + +void* __KLPromptMechanism(void) +{ + if (verbose) puts("STUB: __KLPromptMechanism called"); + return NULL; +} + +void* __KLRemoveKeychainPasswordForPrincipal(void) +{ + if (verbose) puts("STUB: __KLRemoveKeychainPasswordForPrincipal called"); + return NULL; +} + +void* __KLSetApplicationPrompter(void) +{ + if (verbose) puts("STUB: __KLSetApplicationPrompter called"); + return NULL; +} + +void* __KLSetAutomaticPrompting(void) +{ + if (verbose) puts("STUB: __KLSetAutomaticPrompting called"); + return NULL; +} + +void* __KLSetHomeDirectoryAccess(void) +{ + if (verbose) puts("STUB: __KLSetHomeDirectoryAccess called"); + return NULL; +} + +void* __KLSetPromptMechanism(void) +{ + if (verbose) puts("STUB: __KLSetPromptMechanism called"); + return NULL; +} + +void* __KerberosDebugLogLevel(void) +{ + if (verbose) puts("STUB: __KerberosDebugLogLevel called"); + return NULL; +} + +void* __KerberosDebugPrint(void) +{ + if (verbose) puts("STUB: __KerberosDebugPrint called"); + return NULL; +} + +void* __KerberosDebugPrintMemory(void) +{ + if (verbose) puts("STUB: __KerberosDebugPrintMemory called"); + return NULL; +} + +void* __KerberosDebugPrintSession(void) +{ + if (verbose) puts("STUB: __KerberosDebugPrintSession called"); + return NULL; +} + +void* __KerberosDebugVAPrint(void) +{ + if (verbose) puts("STUB: __KerberosDebugVAPrint called"); + return NULL; +} + +void* __KerberosInternal_krb5int_sendtokdc_debug_handler(void) +{ + if (verbose) puts("STUB: __KerberosInternal_krb5int_sendtokdc_debug_handler called"); + return NULL; +} + +void* add_error_table(void) +{ + if (verbose) puts("STUB: add_error_table called"); + return NULL; +} + +void* apple_gss_krb5_export_authdata_if_relevant_context(void) +{ + if (verbose) puts("STUB: apple_gss_krb5_export_authdata_if_relevant_context called"); + return NULL; +} + +void* apple_gss_krb5_free_authdata_if_relevant(void) +{ + if (verbose) puts("STUB: apple_gss_krb5_free_authdata_if_relevant called"); + return NULL; +} + +void* cc_close(void) +{ + if (verbose) puts("STUB: cc_close called"); + return NULL; +} + +void* cc_create(void) +{ + if (verbose) puts("STUB: cc_create called"); + return NULL; +} + +void* cc_destroy(void) +{ + if (verbose) puts("STUB: cc_destroy called"); + return NULL; +} + +void* cc_free_NC_info(void) +{ + if (verbose) puts("STUB: cc_free_NC_info called"); + return NULL; +} + +void* cc_free_creds(void) +{ + if (verbose) puts("STUB: cc_free_creds called"); + return NULL; +} + +void* cc_free_name(void) +{ + if (verbose) puts("STUB: cc_free_name called"); + return NULL; +} + +void* cc_free_principal(void) +{ + if (verbose) puts("STUB: cc_free_principal called"); + return NULL; +} + +void* cc_get_NC_info(void) +{ + if (verbose) puts("STUB: cc_get_NC_info called"); + return NULL; +} + +void* cc_get_change_time(void) +{ + if (verbose) puts("STUB: cc_get_change_time called"); + return NULL; +} + +void* cc_get_cred_version(void) +{ + if (verbose) puts("STUB: cc_get_cred_version called"); + return NULL; +} + +void* cc_get_name(void) +{ + if (verbose) puts("STUB: cc_get_name called"); + return NULL; +} + +void* cc_get_principal(void) +{ + if (verbose) puts("STUB: cc_get_principal called"); + return NULL; +} + +void* cc_initialize(void) +{ + if (verbose) puts("STUB: cc_initialize called"); + return NULL; +} + +void* cc_open(void) +{ + if (verbose) puts("STUB: cc_open called"); + return NULL; +} + +void* cc_remove_cred(void) +{ + if (verbose) puts("STUB: cc_remove_cred called"); + return NULL; +} + +void* cc_seq_fetch_NCs_begin(void) +{ + if (verbose) puts("STUB: cc_seq_fetch_NCs_begin called"); + return NULL; +} + +void* cc_seq_fetch_NCs_end(void) +{ + if (verbose) puts("STUB: cc_seq_fetch_NCs_end called"); + return NULL; +} + +void* cc_seq_fetch_NCs_next(void) +{ + if (verbose) puts("STUB: cc_seq_fetch_NCs_next called"); + return NULL; +} + +void* cc_seq_fetch_creds_begin(void) +{ + if (verbose) puts("STUB: cc_seq_fetch_creds_begin called"); + return NULL; +} + +void* cc_seq_fetch_creds_end(void) +{ + if (verbose) puts("STUB: cc_seq_fetch_creds_end called"); + return NULL; +} + +void* cc_seq_fetch_creds_next(void) +{ + if (verbose) puts("STUB: cc_seq_fetch_creds_next called"); + return NULL; +} + +void* cc_set_principal(void) +{ + if (verbose) puts("STUB: cc_set_principal called"); + return NULL; +} + +void* cc_shutdown(void) +{ + if (verbose) puts("STUB: cc_shutdown called"); + return NULL; +} + +void* cc_store(void) +{ + if (verbose) puts("STUB: cc_store called"); + return NULL; +} + +void* com_err(void) +{ + if (verbose) puts("STUB: com_err called"); + return NULL; +} + +void* com_err_va(void) +{ + if (verbose) puts("STUB: com_err_va called"); + return NULL; +} + +void* decomp_ticket(void) +{ + if (verbose) puts("STUB: decomp_ticket called"); + return NULL; +} + +void* dest_all_tkts(void) +{ + if (verbose) puts("STUB: dest_all_tkts called"); + return NULL; +} + +void* dest_tkt(void) +{ + if (verbose) puts("STUB: dest_tkt called"); + return NULL; +} + +void* encode_krb5_as_req(void) +{ + if (verbose) puts("STUB: encode_krb5_as_req called"); + return NULL; +} + +void* error_message(void) +{ + if (verbose) puts("STUB: error_message called"); + return NULL; +} + +void* get_ad_tkt(void) +{ + if (verbose) puts("STUB: get_ad_tkt called"); + return NULL; +} + +void* get_pw_tkt(void) +{ + if (verbose) puts("STUB: get_pw_tkt called"); + return NULL; +} + +void* gss_accept_sec_context(void) +{ + if (verbose) puts("STUB: gss_accept_sec_context called"); + return NULL; +} + +void* gss_acquire_cred(void) +{ + if (verbose) puts("STUB: gss_acquire_cred called"); + return NULL; +} + +void* gss_add_cred(void) +{ + if (verbose) puts("STUB: gss_add_cred called"); + return NULL; +} + +void* gss_add_oid_set_member(void) +{ + if (verbose) puts("STUB: gss_add_oid_set_member called"); + return NULL; +} + +void* gss_canonicalize_name(void) +{ + if (verbose) puts("STUB: gss_canonicalize_name called"); + return NULL; +} + +void* gss_compare_name(void) +{ + if (verbose) puts("STUB: gss_compare_name called"); + return NULL; +} + +void* gss_context_time(void) +{ + if (verbose) puts("STUB: gss_context_time called"); + return NULL; +} + +void* gss_create_empty_oid_set(void) +{ + if (verbose) puts("STUB: gss_create_empty_oid_set called"); + return NULL; +} + +void* gss_delete_sec_context(void) +{ + if (verbose) puts("STUB: gss_delete_sec_context called"); + return NULL; +} + +void* gss_display_name(void) +{ + if (verbose) puts("STUB: gss_display_name called"); + return NULL; +} + +void* gss_display_status(void) +{ + if (verbose) puts("STUB: gss_display_status called"); + return NULL; +} + +void* gss_duplicate_name(void) +{ + if (verbose) puts("STUB: gss_duplicate_name called"); + return NULL; +} + +void* gss_export_name(void) +{ + if (verbose) puts("STUB: gss_export_name called"); + return NULL; +} + +void* gss_export_sec_context(void) +{ + if (verbose) puts("STUB: gss_export_sec_context called"); + return NULL; +} + +void* gss_get_mic(void) +{ + if (verbose) puts("STUB: gss_get_mic called"); + return NULL; +} + +void* gss_import_name(void) +{ + if (verbose) puts("STUB: gss_import_name called"); + return NULL; +} + +void* gss_import_sec_context(void) +{ + if (verbose) puts("STUB: gss_import_sec_context called"); + return NULL; +} + +void* gss_indicate_mechs(void) +{ + if (verbose) puts("STUB: gss_indicate_mechs called"); + return NULL; +} + +void* gss_init_sec_context(void) +{ + if (verbose) puts("STUB: gss_init_sec_context called"); + return NULL; +} + +void* gss_inquire_context(void) +{ + if (verbose) puts("STUB: gss_inquire_context called"); + return NULL; +} + +void* gss_inquire_cred(void) +{ + if (verbose) puts("STUB: gss_inquire_cred called"); + return NULL; +} + +void* gss_inquire_cred_by_mech(void) +{ + if (verbose) puts("STUB: gss_inquire_cred_by_mech called"); + return NULL; +} + +void* gss_inquire_mechs_for_name(void) +{ + if (verbose) puts("STUB: gss_inquire_mechs_for_name called"); + return NULL; +} + +void* gss_inquire_names_for_mech(void) +{ + if (verbose) puts("STUB: gss_inquire_names_for_mech called"); + return NULL; +} + +void* gss_krb5_ccache_name(void) +{ + if (verbose) puts("STUB: gss_krb5_ccache_name called"); + return NULL; +} + +void* gss_krb5_copy_ccache(void) +{ + if (verbose) puts("STUB: gss_krb5_copy_ccache called"); + return NULL; +} + +void* gss_krb5_export_lucid_sec_context(void) +{ + if (verbose) puts("STUB: gss_krb5_export_lucid_sec_context called"); + return NULL; +} + +void* gss_krb5_free_lucid_sec_context(void) +{ + if (verbose) puts("STUB: gss_krb5_free_lucid_sec_context called"); + return NULL; +} + +void* gss_krb5_get_tkt_flags(void) +{ + if (verbose) puts("STUB: gss_krb5_get_tkt_flags called"); + return NULL; +} + +void* gss_krb5_set_allowable_enctypes(void) +{ + if (verbose) puts("STUB: gss_krb5_set_allowable_enctypes called"); + return NULL; +} + +void* gss_krb5_ui(void) +{ + if (verbose) puts("STUB: gss_krb5_ui called"); + return NULL; +} + +void* gss_oid_to_str(void) +{ + if (verbose) puts("STUB: gss_oid_to_str called"); + return NULL; +} + +void* gss_process_context_token(void) +{ + if (verbose) puts("STUB: gss_process_context_token called"); + return NULL; +} + +void* gss_release_buffer(void) +{ + if (verbose) puts("STUB: gss_release_buffer called"); + return NULL; +} + +void* gss_release_cred(void) +{ + if (verbose) puts("STUB: gss_release_cred called"); + return NULL; +} + +void* gss_release_name(void) +{ + if (verbose) puts("STUB: gss_release_name called"); + return NULL; +} + +void* gss_release_oid(void) +{ + if (verbose) puts("STUB: gss_release_oid called"); + return NULL; +} + +void* gss_release_oid_set(void) +{ + if (verbose) puts("STUB: gss_release_oid_set called"); + return NULL; +} + +void* gss_seal(void) +{ + if (verbose) puts("STUB: gss_seal called"); + return NULL; +} + +void* gss_sign(void) +{ + if (verbose) puts("STUB: gss_sign called"); + return NULL; +} + +void* gss_str_to_oid(void) +{ + if (verbose) puts("STUB: gss_str_to_oid called"); + return NULL; +} + +void* gss_test_oid_set_member(void) +{ + if (verbose) puts("STUB: gss_test_oid_set_member called"); + return NULL; +} + +void* gss_unseal(void) +{ + if (verbose) puts("STUB: gss_unseal called"); + return NULL; +} + +void* gss_unwrap(void) +{ + if (verbose) puts("STUB: gss_unwrap called"); + return NULL; +} + +void* gss_verify(void) +{ + if (verbose) puts("STUB: gss_verify called"); + return NULL; +} + +void* gss_verify_mic(void) +{ + if (verbose) puts("STUB: gss_verify_mic called"); + return NULL; +} + +void* gss_wrap(void) +{ + if (verbose) puts("STUB: gss_wrap called"); + return NULL; +} + +void* gss_wrap_size_limit(void) +{ + if (verbose) puts("STUB: gss_wrap_size_limit called"); + return NULL; +} + +void* initialize_prof_error_table(void) +{ + if (verbose) puts("STUB: initialize_prof_error_table called"); + return NULL; +} + +void* k_isinst(void) +{ + if (verbose) puts("STUB: k_isinst called"); + return NULL; +} + +void* k_isname(void) +{ + if (verbose) puts("STUB: k_isname called"); + return NULL; +} + +void* k_isrealm(void) +{ + if (verbose) puts("STUB: k_isrealm called"); + return NULL; +} + +void* kim_ccache_compare(void) +{ + if (verbose) puts("STUB: kim_ccache_compare called"); + return NULL; +} + +void* kim_ccache_copy(void) +{ + if (verbose) puts("STUB: kim_ccache_copy called"); + return NULL; +} + +void* kim_ccache_create_from_client_identity(void) +{ + if (verbose) puts("STUB: kim_ccache_create_from_client_identity called"); + return NULL; +} + +void* kim_ccache_create_from_default(void) +{ + if (verbose) puts("STUB: kim_ccache_create_from_default called"); + return NULL; +} + +void* kim_ccache_create_from_display_name(void) +{ + if (verbose) puts("STUB: kim_ccache_create_from_display_name called"); + return NULL; +} + +void* kim_ccache_create_from_keytab(void) +{ + if (verbose) puts("STUB: kim_ccache_create_from_keytab called"); + return NULL; +} + +void* kim_ccache_create_from_krb5_ccache(void) +{ + if (verbose) puts("STUB: kim_ccache_create_from_krb5_ccache called"); + return NULL; +} + +void* kim_ccache_create_from_type_and_name(void) +{ + if (verbose) puts("STUB: kim_ccache_create_from_type_and_name called"); + return NULL; +} + +void* kim_ccache_create_new(void) +{ + if (verbose) puts("STUB: kim_ccache_create_new called"); + return NULL; +} + +void* kim_ccache_create_new_if_needed(void) +{ + if (verbose) puts("STUB: kim_ccache_create_new_if_needed called"); + return NULL; +} + +void* kim_ccache_create_new_if_needed_with_password(void) +{ + if (verbose) puts("STUB: kim_ccache_create_new_if_needed_with_password called"); + return NULL; +} + +void* kim_ccache_create_new_with_password(void) +{ + if (verbose) puts("STUB: kim_ccache_create_new_with_password called"); + return NULL; +} + +void* kim_ccache_destroy(void) +{ + if (verbose) puts("STUB: kim_ccache_destroy called"); + return NULL; +} + +void* kim_ccache_free(void) +{ + if (verbose) puts("STUB: kim_ccache_free called"); + return NULL; +} + +void* kim_ccache_get_client_identity(void) +{ + if (verbose) puts("STUB: kim_ccache_get_client_identity called"); + return NULL; +} + +void* kim_ccache_get_display_name(void) +{ + if (verbose) puts("STUB: kim_ccache_get_display_name called"); + return NULL; +} + +void* kim_ccache_get_expiration_time(void) +{ + if (verbose) puts("STUB: kim_ccache_get_expiration_time called"); + return NULL; +} + +void* kim_ccache_get_krb5_ccache(void) +{ + if (verbose) puts("STUB: kim_ccache_get_krb5_ccache called"); + return NULL; +} + +void* kim_ccache_get_name(void) +{ + if (verbose) puts("STUB: kim_ccache_get_name called"); + return NULL; +} + +void* kim_ccache_get_options(void) +{ + if (verbose) puts("STUB: kim_ccache_get_options called"); + return NULL; +} + +void* kim_ccache_get_renewal_expiration_time(void) +{ + if (verbose) puts("STUB: kim_ccache_get_renewal_expiration_time called"); + return NULL; +} + +void* kim_ccache_get_start_time(void) +{ + if (verbose) puts("STUB: kim_ccache_get_start_time called"); + return NULL; +} + +void* kim_ccache_get_state(void) +{ + if (verbose) puts("STUB: kim_ccache_get_state called"); + return NULL; +} + +void* kim_ccache_get_type(void) +{ + if (verbose) puts("STUB: kim_ccache_get_type called"); + return NULL; +} + +void* kim_ccache_get_valid_credential(void) +{ + if (verbose) puts("STUB: kim_ccache_get_valid_credential called"); + return NULL; +} + +void* kim_ccache_iterator_create(void) +{ + if (verbose) puts("STUB: kim_ccache_iterator_create called"); + return NULL; +} + +void* kim_ccache_iterator_free(void) +{ + if (verbose) puts("STUB: kim_ccache_iterator_free called"); + return NULL; +} + +void* kim_ccache_iterator_next(void) +{ + if (verbose) puts("STUB: kim_ccache_iterator_next called"); + return NULL; +} + +void* kim_ccache_renew(void) +{ + if (verbose) puts("STUB: kim_ccache_renew called"); + return NULL; +} + +void* kim_ccache_set_default(void) +{ + if (verbose) puts("STUB: kim_ccache_set_default called"); + return NULL; +} + +void* kim_ccache_validate(void) +{ + if (verbose) puts("STUB: kim_ccache_validate called"); + return NULL; +} + +void* kim_ccache_verify(void) +{ + if (verbose) puts("STUB: kim_ccache_verify called"); + return NULL; +} + +void* kim_credential_copy(void) +{ + if (verbose) puts("STUB: kim_credential_copy called"); + return NULL; +} + +void* kim_credential_create_from_keytab(void) +{ + if (verbose) puts("STUB: kim_credential_create_from_keytab called"); + return NULL; +} + +void* kim_credential_create_from_krb5_creds(void) +{ + if (verbose) puts("STUB: kim_credential_create_from_krb5_creds called"); + return NULL; +} + +void* kim_credential_create_new(void) +{ + if (verbose) puts("STUB: kim_credential_create_new called"); + return NULL; +} + +void* kim_credential_create_new_with_password(void) +{ + if (verbose) puts("STUB: kim_credential_create_new_with_password called"); + return NULL; +} + +void* kim_credential_free(void) +{ + if (verbose) puts("STUB: kim_credential_free called"); + return NULL; +} + +void* kim_credential_get_client_identity(void) +{ + if (verbose) puts("STUB: kim_credential_get_client_identity called"); + return NULL; +} + +void* kim_credential_get_expiration_time(void) +{ + if (verbose) puts("STUB: kim_credential_get_expiration_time called"); + return NULL; +} + +void* kim_credential_get_krb5_creds(void) +{ + if (verbose) puts("STUB: kim_credential_get_krb5_creds called"); + return NULL; +} + +void* kim_credential_get_options(void) +{ + if (verbose) puts("STUB: kim_credential_get_options called"); + return NULL; +} + +void* kim_credential_get_renewal_expiration_time(void) +{ + if (verbose) puts("STUB: kim_credential_get_renewal_expiration_time called"); + return NULL; +} + +void* kim_credential_get_service_identity(void) +{ + if (verbose) puts("STUB: kim_credential_get_service_identity called"); + return NULL; +} + +void* kim_credential_get_start_time(void) +{ + if (verbose) puts("STUB: kim_credential_get_start_time called"); + return NULL; +} + +void* kim_credential_get_state(void) +{ + if (verbose) puts("STUB: kim_credential_get_state called"); + return NULL; +} + +void* kim_credential_is_tgt(void) +{ + if (verbose) puts("STUB: kim_credential_is_tgt called"); + return NULL; +} + +void* kim_credential_iterator_create(void) +{ + if (verbose) puts("STUB: kim_credential_iterator_create called"); + return NULL; +} + +void* kim_credential_iterator_free(void) +{ + if (verbose) puts("STUB: kim_credential_iterator_free called"); + return NULL; +} + +void* kim_credential_iterator_next(void) +{ + if (verbose) puts("STUB: kim_credential_iterator_next called"); + return NULL; +} + +void* kim_credential_renew(void) +{ + if (verbose) puts("STUB: kim_credential_renew called"); + return NULL; +} + +void* kim_credential_store(void) +{ + if (verbose) puts("STUB: kim_credential_store called"); + return NULL; +} + +void* kim_credential_validate(void) +{ + if (verbose) puts("STUB: kim_credential_validate called"); + return NULL; +} + +void* kim_credential_verify(void) +{ + if (verbose) puts("STUB: kim_credential_verify called"); + return NULL; +} + +void* kim_identity_change_password(void) +{ + if (verbose) puts("STUB: kim_identity_change_password called"); + return NULL; +} + +void* kim_identity_compare(void) +{ + if (verbose) puts("STUB: kim_identity_compare called"); + return NULL; +} + +void* kim_identity_copy(void) +{ + if (verbose) puts("STUB: kim_identity_copy called"); + return NULL; +} + +void* kim_identity_create_from_components(void) +{ + if (verbose) puts("STUB: kim_identity_create_from_components called"); + return NULL; +} + +void* kim_identity_create_from_krb5_principal(void) +{ + if (verbose) puts("STUB: kim_identity_create_from_krb5_principal called"); + return NULL; +} + +void* kim_identity_create_from_string(void) +{ + if (verbose) puts("STUB: kim_identity_create_from_string called"); + return NULL; +} + +void* kim_identity_free(void) +{ + if (verbose) puts("STUB: kim_identity_free called"); + return NULL; +} + +void* kim_identity_get_component_at_index(void) +{ + if (verbose) puts("STUB: kim_identity_get_component_at_index called"); + return NULL; +} + +void* kim_identity_get_components_string(void) +{ + if (verbose) puts("STUB: kim_identity_get_components_string called"); + return NULL; +} + +void* kim_identity_get_display_string(void) +{ + if (verbose) puts("STUB: kim_identity_get_display_string called"); + return NULL; +} + +void* kim_identity_get_krb5_principal(void) +{ + if (verbose) puts("STUB: kim_identity_get_krb5_principal called"); + return NULL; +} + +void* kim_identity_get_number_of_components(void) +{ + if (verbose) puts("STUB: kim_identity_get_number_of_components called"); + return NULL; +} + +void* kim_identity_get_realm(void) +{ + if (verbose) puts("STUB: kim_identity_get_realm called"); + return NULL; +} + +void* kim_identity_get_string(void) +{ + if (verbose) puts("STUB: kim_identity_get_string called"); + return NULL; +} + +void* kim_library_set_allow_automatic_prompting(void) +{ + if (verbose) puts("STUB: kim_library_set_allow_automatic_prompting called"); + return NULL; +} + +void* kim_library_set_allow_home_directory_access(void) +{ + if (verbose) puts("STUB: kim_library_set_allow_home_directory_access called"); + return NULL; +} + +void* kim_library_set_application_name(void) +{ + if (verbose) puts("STUB: kim_library_set_application_name called"); + return NULL; +} + +void* kim_library_set_ui_environment(void) +{ + if (verbose) puts("STUB: kim_library_set_ui_environment called"); + return NULL; +} + +void* kim_options_copy(void) +{ + if (verbose) puts("STUB: kim_options_copy called"); + return NULL; +} + +void* kim_options_create(void) +{ + if (verbose) puts("STUB: kim_options_create called"); + return NULL; +} + +void* kim_options_create_from_stream(void) +{ + if (verbose) puts("STUB: kim_options_create_from_stream called"); + return NULL; +} + +void* kim_options_free(void) +{ + if (verbose) puts("STUB: kim_options_free called"); + return NULL; +} + +void* kim_options_get_addressless(void) +{ + if (verbose) puts("STUB: kim_options_get_addressless called"); + return NULL; +} + +void* kim_options_get_forwardable(void) +{ + if (verbose) puts("STUB: kim_options_get_forwardable called"); + return NULL; +} + +void* kim_options_get_lifetime(void) +{ + if (verbose) puts("STUB: kim_options_get_lifetime called"); + return NULL; +} + +void* kim_options_get_proxiable(void) +{ + if (verbose) puts("STUB: kim_options_get_proxiable called"); + return NULL; +} + +void* kim_options_get_renewable(void) +{ + if (verbose) puts("STUB: kim_options_get_renewable called"); + return NULL; +} + +void* kim_options_get_renewal_lifetime(void) +{ + if (verbose) puts("STUB: kim_options_get_renewal_lifetime called"); + return NULL; +} + +void* kim_options_get_service_name(void) +{ + if (verbose) puts("STUB: kim_options_get_service_name called"); + return NULL; +} + +void* kim_options_get_start_time(void) +{ + if (verbose) puts("STUB: kim_options_get_start_time called"); + return NULL; +} + +void* kim_options_set_addressless(void) +{ + if (verbose) puts("STUB: kim_options_set_addressless called"); + return NULL; +} + +void* kim_options_set_forwardable(void) +{ + if (verbose) puts("STUB: kim_options_set_forwardable called"); + return NULL; +} + +void* kim_options_set_lifetime(void) +{ + if (verbose) puts("STUB: kim_options_set_lifetime called"); + return NULL; +} + +void* kim_options_set_proxiable(void) +{ + if (verbose) puts("STUB: kim_options_set_proxiable called"); + return NULL; +} + +void* kim_options_set_renewable(void) +{ + if (verbose) puts("STUB: kim_options_set_renewable called"); + return NULL; +} + +void* kim_options_set_renewal_lifetime(void) +{ + if (verbose) puts("STUB: kim_options_set_renewal_lifetime called"); + return NULL; +} + +void* kim_options_set_service_name(void) +{ + if (verbose) puts("STUB: kim_options_set_service_name called"); + return NULL; +} + +void* kim_options_set_start_time(void) +{ + if (verbose) puts("STUB: kim_options_set_start_time called"); + return NULL; +} + +void* kim_options_write_to_stream(void) +{ + if (verbose) puts("STUB: kim_options_write_to_stream called"); + return NULL; +} + +void* kim_preferences_add_favorite_identity(void) +{ + if (verbose) puts("STUB: kim_preferences_add_favorite_identity called"); + return NULL; +} + +void* kim_preferences_copy(void) +{ + if (verbose) puts("STUB: kim_preferences_copy called"); + return NULL; +} + +void* kim_preferences_create(void) +{ + if (verbose) puts("STUB: kim_preferences_create called"); + return NULL; +} + +void* kim_preferences_free(void) +{ + if (verbose) puts("STUB: kim_preferences_free called"); + return NULL; +} + +void* kim_preferences_get_client_identity(void) +{ + if (verbose) puts("STUB: kim_preferences_get_client_identity called"); + return NULL; +} + +void* kim_preferences_get_favorite_identity_at_index(void) +{ + if (verbose) puts("STUB: kim_preferences_get_favorite_identity_at_index called"); + return NULL; +} + +void* kim_preferences_get_maximum_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_get_maximum_lifetime called"); + return NULL; +} + +void* kim_preferences_get_maximum_renewal_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_get_maximum_renewal_lifetime called"); + return NULL; +} + +void* kim_preferences_get_minimum_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_get_minimum_lifetime called"); + return NULL; +} + +void* kim_preferences_get_minimum_renewal_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_get_minimum_renewal_lifetime called"); + return NULL; +} + +void* kim_preferences_get_number_of_favorite_identities(void) +{ + if (verbose) puts("STUB: kim_preferences_get_number_of_favorite_identities called"); + return NULL; +} + +void* kim_preferences_get_options(void) +{ + if (verbose) puts("STUB: kim_preferences_get_options called"); + return NULL; +} + +void* kim_preferences_get_remember_client_identity(void) +{ + if (verbose) puts("STUB: kim_preferences_get_remember_client_identity called"); + return NULL; +} + +void* kim_preferences_get_remember_options(void) +{ + if (verbose) puts("STUB: kim_preferences_get_remember_options called"); + return NULL; +} + +void* kim_preferences_remove_all_favorite_identities(void) +{ + if (verbose) puts("STUB: kim_preferences_remove_all_favorite_identities called"); + return NULL; +} + +void* kim_preferences_remove_favorite_identity(void) +{ + if (verbose) puts("STUB: kim_preferences_remove_favorite_identity called"); + return NULL; +} + +void* kim_preferences_set_client_identity(void) +{ + if (verbose) puts("STUB: kim_preferences_set_client_identity called"); + return NULL; +} + +void* kim_preferences_set_maximum_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_set_maximum_lifetime called"); + return NULL; +} + +void* kim_preferences_set_maximum_renewal_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_set_maximum_renewal_lifetime called"); + return NULL; +} + +void* kim_preferences_set_minimum_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_set_minimum_lifetime called"); + return NULL; +} + +void* kim_preferences_set_minimum_renewal_lifetime(void) +{ + if (verbose) puts("STUB: kim_preferences_set_minimum_renewal_lifetime called"); + return NULL; +} + +void* kim_preferences_set_options(void) +{ + if (verbose) puts("STUB: kim_preferences_set_options called"); + return NULL; +} + +void* kim_preferences_set_remember_client_identity(void) +{ + if (verbose) puts("STUB: kim_preferences_set_remember_client_identity called"); + return NULL; +} + +void* kim_preferences_set_remember_options(void) +{ + if (verbose) puts("STUB: kim_preferences_set_remember_options called"); + return NULL; +} + +void* kim_preferences_synchronize(void) +{ + if (verbose) puts("STUB: kim_preferences_synchronize called"); + return NULL; +} + +void* kim_selection_hints_copy(void) +{ + if (verbose) puts("STUB: kim_selection_hints_copy called"); + return NULL; +} + +void* kim_selection_hints_create(void) +{ + if (verbose) puts("STUB: kim_selection_hints_create called"); + return NULL; +} + +void* kim_selection_hints_create_from_stream(void) +{ + if (verbose) puts("STUB: kim_selection_hints_create_from_stream called"); + return NULL; +} + +void* kim_selection_hints_forget_identity(void) +{ + if (verbose) puts("STUB: kim_selection_hints_forget_identity called"); + return NULL; +} + +void* kim_selection_hints_free(void) +{ + if (verbose) puts("STUB: kim_selection_hints_free called"); + return NULL; +} + +void* kim_selection_hints_get_allow_user_interaction(void) +{ + if (verbose) puts("STUB: kim_selection_hints_get_allow_user_interaction called"); + return NULL; +} + +void* kim_selection_hints_get_explanation(void) +{ + if (verbose) puts("STUB: kim_selection_hints_get_explanation called"); + return NULL; +} + +void* kim_selection_hints_get_hint(void) +{ + if (verbose) puts("STUB: kim_selection_hints_get_hint called"); + return NULL; +} + +void* kim_selection_hints_get_identity(void) +{ + if (verbose) puts("STUB: kim_selection_hints_get_identity called"); + return NULL; +} + +void* kim_selection_hints_get_options(void) +{ + if (verbose) puts("STUB: kim_selection_hints_get_options called"); + return NULL; +} + +void* kim_selection_hints_get_remember_identity(void) +{ + if (verbose) puts("STUB: kim_selection_hints_get_remember_identity called"); + return NULL; +} + +void* kim_selection_hints_remember_identity(void) +{ + if (verbose) puts("STUB: kim_selection_hints_remember_identity called"); + return NULL; +} + +void* kim_selection_hints_set_allow_user_interaction(void) +{ + if (verbose) puts("STUB: kim_selection_hints_set_allow_user_interaction called"); + return NULL; +} + +void* kim_selection_hints_set_explanation(void) +{ + if (verbose) puts("STUB: kim_selection_hints_set_explanation called"); + return NULL; +} + +void* kim_selection_hints_set_hint(void) +{ + if (verbose) puts("STUB: kim_selection_hints_set_hint called"); + return NULL; +} + +void* kim_selection_hints_set_options(void) +{ + if (verbose) puts("STUB: kim_selection_hints_set_options called"); + return NULL; +} + +void* kim_selection_hints_set_remember_identity(void) +{ + if (verbose) puts("STUB: kim_selection_hints_set_remember_identity called"); + return NULL; +} + +void* kim_string_compare(void) +{ + if (verbose) puts("STUB: kim_string_compare called"); + return NULL; +} + +void* kim_string_copy(void) +{ + if (verbose) puts("STUB: kim_string_copy called"); + return NULL; +} + +void* kim_string_create_for_last_error(void) +{ + if (verbose) puts("STUB: kim_string_create_for_last_error called"); + return NULL; +} + +void* kim_string_free(void) +{ + if (verbose) puts("STUB: kim_string_free called"); + return NULL; +} + +void* kname_parse(void) +{ + if (verbose) puts("STUB: kname_parse called"); + return NULL; +} + +void* kname_unparse(void) +{ + if (verbose) puts("STUB: kname_unparse called"); + return NULL; +} + +void* krb524_convert_creds_kdc(void) +{ + if (verbose) puts("STUB: krb524_convert_creds_kdc called"); + return NULL; +} + +void* krb5_425_conv_principal(void) +{ + if (verbose) puts("STUB: krb5_425_conv_principal called"); + return NULL; +} + +void* krb5_524_conv_principal(void) +{ + if (verbose) puts("STUB: krb5_524_conv_principal called"); + return NULL; +} + +void* krb5_524_convert_creds(void) +{ + if (verbose) puts("STUB: krb5_524_convert_creds called"); + return NULL; +} + +void* krb5_address_compare(void) +{ + if (verbose) puts("STUB: krb5_address_compare called"); + return NULL; +} + +void* krb5_address_order(void) +{ + if (verbose) puts("STUB: krb5_address_order called"); + return NULL; +} + +void* krb5_address_search(void) +{ + if (verbose) puts("STUB: krb5_address_search called"); + return NULL; +} + +void* krb5_aname_to_localname(void) +{ + if (verbose) puts("STUB: krb5_aname_to_localname called"); + return NULL; +} + +void* krb5_appdefault_boolean(void) +{ + if (verbose) puts("STUB: krb5_appdefault_boolean called"); + return NULL; +} + +void* krb5_appdefault_string(void) +{ + if (verbose) puts("STUB: krb5_appdefault_string called"); + return NULL; +} + +void* krb5_auth_con_free(void) +{ + if (verbose) puts("STUB: krb5_auth_con_free called"); + return NULL; +} + +void* krb5_auth_con_genaddrs(void) +{ + if (verbose) puts("STUB: krb5_auth_con_genaddrs called"); + return NULL; +} + +void* krb5_auth_con_get_checksum_func(void) +{ + if (verbose) puts("STUB: krb5_auth_con_get_checksum_func called"); + return NULL; +} + +void* krb5_auth_con_getaddrs(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getaddrs called"); + return NULL; +} + +void* krb5_auth_con_getauthenticator(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getauthenticator called"); + return NULL; +} + +void* krb5_auth_con_getflags(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getflags called"); + return NULL; +} + +void* krb5_auth_con_getkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getkey called"); + return NULL; +} + +void* krb5_auth_con_getlocalseqnumber(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getlocalseqnumber called"); + return NULL; +} + +void* krb5_auth_con_getlocalsubkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getlocalsubkey called"); + return NULL; +} + +void* krb5_auth_con_getrcache(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getrcache called"); + return NULL; +} + +void* krb5_auth_con_getrecvsubkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getrecvsubkey called"); + return NULL; +} + +void* krb5_auth_con_getremoteseqnumber(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getremoteseqnumber called"); + return NULL; +} + +void* krb5_auth_con_getremotesubkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getremotesubkey called"); + return NULL; +} + +void* krb5_auth_con_getsendsubkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_getsendsubkey called"); + return NULL; +} + +void* krb5_auth_con_init(void) +{ + if (verbose) puts("STUB: krb5_auth_con_init called"); + return NULL; +} + +void* krb5_auth_con_initivector(void) +{ + if (verbose) puts("STUB: krb5_auth_con_initivector called"); + return NULL; +} + +void* krb5_auth_con_set_checksum_func(void) +{ + if (verbose) puts("STUB: krb5_auth_con_set_checksum_func called"); + return NULL; +} + +void* krb5_auth_con_setaddrs(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setaddrs called"); + return NULL; +} + +void* krb5_auth_con_setflags(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setflags called"); + return NULL; +} + +void* krb5_auth_con_setports(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setports called"); + return NULL; +} + +void* krb5_auth_con_setrcache(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setrcache called"); + return NULL; +} + +void* krb5_auth_con_setrecvsubkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setrecvsubkey called"); + return NULL; +} + +void* krb5_auth_con_setsendsubkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setsendsubkey called"); + return NULL; +} + +void* krb5_auth_con_setuseruserkey(void) +{ + if (verbose) puts("STUB: krb5_auth_con_setuseruserkey called"); + return NULL; +} + +void* krb5_build_principal(void) +{ + if (verbose) puts("STUB: krb5_build_principal called"); + return NULL; +} + +void* krb5_build_principal_alloc_va(void) +{ + if (verbose) puts("STUB: krb5_build_principal_alloc_va called"); + return NULL; +} + +void* krb5_build_principal_ext(void) +{ + if (verbose) puts("STUB: krb5_build_principal_ext called"); + return NULL; +} + +void* krb5_build_principal_va(void) +{ + if (verbose) puts("STUB: krb5_build_principal_va called"); + return NULL; +} + +void* krb5_c_block_size(void) +{ + if (verbose) puts("STUB: krb5_c_block_size called"); + return NULL; +} + +void* krb5_c_checksum_length(void) +{ + if (verbose) puts("STUB: krb5_c_checksum_length called"); + return NULL; +} + +void* krb5_c_decrypt(void) +{ + if (verbose) puts("STUB: krb5_c_decrypt called"); + return NULL; +} + +void* krb5_c_encrypt(void) +{ + if (verbose) puts("STUB: krb5_c_encrypt called"); + return NULL; +} + +void* krb5_c_encrypt_length(void) +{ + if (verbose) puts("STUB: krb5_c_encrypt_length called"); + return NULL; +} + +void* krb5_c_enctype_compare(void) +{ + if (verbose) puts("STUB: krb5_c_enctype_compare called"); + return NULL; +} + +void* krb5_c_free_state(void) +{ + if (verbose) puts("STUB: krb5_c_free_state called"); + return NULL; +} + +void* krb5_c_init_state(void) +{ + if (verbose) puts("STUB: krb5_c_init_state called"); + return NULL; +} + +void* krb5_c_is_coll_proof_cksum(void) +{ + if (verbose) puts("STUB: krb5_c_is_coll_proof_cksum called"); + return NULL; +} + +void* krb5_c_is_keyed_cksum(void) +{ + if (verbose) puts("STUB: krb5_c_is_keyed_cksum called"); + return NULL; +} + +void* krb5_c_keyed_checksum_types(void) +{ + if (verbose) puts("STUB: krb5_c_keyed_checksum_types called"); + return NULL; +} + +void* krb5_c_make_checksum(void) +{ + if (verbose) puts("STUB: krb5_c_make_checksum called"); + return NULL; +} + +void* krb5_c_make_random_key(void) +{ + if (verbose) puts("STUB: krb5_c_make_random_key called"); + return NULL; +} + +void* krb5_c_random_add_entropy(void) +{ + if (verbose) puts("STUB: krb5_c_random_add_entropy called"); + return NULL; +} + +void* krb5_c_random_make_octets(void) +{ + if (verbose) puts("STUB: krb5_c_random_make_octets called"); + return NULL; +} + +void* krb5_c_random_os_entropy(void) +{ + if (verbose) puts("STUB: krb5_c_random_os_entropy called"); + return NULL; +} + +void* krb5_c_random_seed(void) +{ + if (verbose) puts("STUB: krb5_c_random_seed called"); + return NULL; +} + +void* krb5_c_string_to_key(void) +{ + if (verbose) puts("STUB: krb5_c_string_to_key called"); + return NULL; +} + +void* krb5_c_string_to_key_with_params(void) +{ + if (verbose) puts("STUB: krb5_c_string_to_key_with_params called"); + return NULL; +} + +void* krb5_c_valid_cksumtype(void) +{ + if (verbose) puts("STUB: krb5_c_valid_cksumtype called"); + return NULL; +} + +void* krb5_c_valid_enctype(void) +{ + if (verbose) puts("STUB: krb5_c_valid_enctype called"); + return NULL; +} + +void* krb5_c_verify_checksum(void) +{ + if (verbose) puts("STUB: krb5_c_verify_checksum called"); + return NULL; +} + +void* krb5_calculate_checksum(void) +{ + if (verbose) puts("STUB: krb5_calculate_checksum called"); + return NULL; +} + +void* krb5_cc_cache_match(void) +{ + if (verbose) puts("STUB: krb5_cc_cache_match called"); + return NULL; +} + +void* krb5_cc_close(void) +{ + if (verbose) puts("STUB: krb5_cc_close called"); + return NULL; +} + +void* krb5_cc_copy_creds(void) +{ + if (verbose) puts("STUB: krb5_cc_copy_creds called"); + return NULL; +} + +void* krb5_cc_default(void) +{ + if (verbose) puts("STUB: krb5_cc_default called"); + return NULL; +} + +void* krb5_cc_default_name(void) +{ + if (verbose) puts("STUB: krb5_cc_default_name called"); + return NULL; +} + +void* krb5_cc_destroy(void) +{ + if (verbose) puts("STUB: krb5_cc_destroy called"); + return NULL; +} + +void* krb5_cc_end_seq_get(void) +{ + if (verbose) puts("STUB: krb5_cc_end_seq_get called"); + return NULL; +} + +void* krb5_cc_gen_new(void) +{ + if (verbose) puts("STUB: krb5_cc_gen_new called"); + return NULL; +} + +void* krb5_cc_get_config(void) +{ + if (verbose) puts("STUB: krb5_cc_get_config called"); + return NULL; +} + +void* krb5_cc_get_name(void) +{ + if (verbose) puts("STUB: krb5_cc_get_name called"); + return NULL; +} + +void* krb5_cc_get_principal(void) +{ + if (verbose) puts("STUB: krb5_cc_get_principal called"); + return NULL; +} + +void* krb5_cc_get_type(void) +{ + if (verbose) puts("STUB: krb5_cc_get_type called"); + return NULL; +} + +void* krb5_cc_initialize(void) +{ + if (verbose) puts("STUB: krb5_cc_initialize called"); + return NULL; +} + +void* krb5_cc_last_change_time(void) +{ + if (verbose) puts("STUB: krb5_cc_last_change_time called"); + return NULL; +} + +void* krb5_cc_lock(void) +{ + if (verbose) puts("STUB: krb5_cc_lock called"); + return NULL; +} + +void* krb5_cc_move(void) +{ + if (verbose) puts("STUB: krb5_cc_move called"); + return NULL; +} + +void* krb5_cc_new_unique(void) +{ + if (verbose) puts("STUB: krb5_cc_new_unique called"); + return NULL; +} + +void* krb5_cc_next_cred(void) +{ + if (verbose) puts("STUB: krb5_cc_next_cred called"); + return NULL; +} + +void* krb5_cc_remove_cred(void) +{ + if (verbose) puts("STUB: krb5_cc_remove_cred called"); + return NULL; +} + +void* krb5_cc_resolve(void) +{ + if (verbose) puts("STUB: krb5_cc_resolve called"); + return NULL; +} + +void* krb5_cc_retrieve_cred(void) +{ + if (verbose) puts("STUB: krb5_cc_retrieve_cred called"); + return NULL; +} + +void* krb5_cc_set_config(void) +{ + if (verbose) puts("STUB: krb5_cc_set_config called"); + return NULL; +} + +void* krb5_cc_set_default_name(void) +{ + if (verbose) puts("STUB: krb5_cc_set_default_name called"); + return NULL; +} + +void* krb5_cc_set_flags(void) +{ + if (verbose) puts("STUB: krb5_cc_set_flags called"); + return NULL; +} + +void* krb5_cc_start_seq_get(void) +{ + if (verbose) puts("STUB: krb5_cc_start_seq_get called"); + return NULL; +} + +void* krb5_cc_store_cred(void) +{ + if (verbose) puts("STUB: krb5_cc_store_cred called"); + return NULL; +} + +void* krb5_cc_unlock(void) +{ + if (verbose) puts("STUB: krb5_cc_unlock called"); + return NULL; +} + +void* krb5_cccol_cursor_free(void) +{ + if (verbose) puts("STUB: krb5_cccol_cursor_free called"); + return NULL; +} + +void* krb5_cccol_cursor_new(void) +{ + if (verbose) puts("STUB: krb5_cccol_cursor_new called"); + return NULL; +} + +void* krb5_cccol_cursor_next(void) +{ + if (verbose) puts("STUB: krb5_cccol_cursor_next called"); + return NULL; +} + +void* krb5_cccol_last_change_time(void) +{ + if (verbose) puts("STUB: krb5_cccol_last_change_time called"); + return NULL; +} + +void* krb5_cccol_lock(void) +{ + if (verbose) puts("STUB: krb5_cccol_lock called"); + return NULL; +} + +void* krb5_cccol_unlock(void) +{ + if (verbose) puts("STUB: krb5_cccol_unlock called"); + return NULL; +} + +void* krb5_change_password(void) +{ + if (verbose) puts("STUB: krb5_change_password called"); + return NULL; +} + +void* krb5_checksum_size(void) +{ + if (verbose) puts("STUB: krb5_checksum_size called"); + return NULL; +} + +void* krb5_cksumtype_to_string(void) +{ + if (verbose) puts("STUB: krb5_cksumtype_to_string called"); + return NULL; +} + +void* krb5_clear_error_message(void) +{ + if (verbose) puts("STUB: krb5_clear_error_message called"); + return NULL; +} + +void* krb5_copy_addresses(void) +{ + if (verbose) puts("STUB: krb5_copy_addresses called"); + return NULL; +} + +void* krb5_copy_authdata(void) +{ + if (verbose) puts("STUB: krb5_copy_authdata called"); + return NULL; +} + +void* krb5_copy_authenticator(void) +{ + if (verbose) puts("STUB: krb5_copy_authenticator called"); + return NULL; +} + +void* krb5_copy_checksum(void) +{ + if (verbose) puts("STUB: krb5_copy_checksum called"); + return NULL; +} + +void* krb5_copy_context(void) +{ + if (verbose) puts("STUB: krb5_copy_context called"); + return NULL; +} + +void* krb5_copy_creds(void) +{ + if (verbose) puts("STUB: krb5_copy_creds called"); + return NULL; +} + +void* krb5_copy_data(void) +{ + if (verbose) puts("STUB: krb5_copy_data called"); + return NULL; +} + +void* krb5_copy_keyblock(void) +{ + if (verbose) puts("STUB: krb5_copy_keyblock called"); + return NULL; +} + +void* krb5_copy_keyblock_contents(void) +{ + if (verbose) puts("STUB: krb5_copy_keyblock_contents called"); + return NULL; +} + +void* krb5_copy_principal(void) +{ + if (verbose) puts("STUB: krb5_copy_principal called"); + return NULL; +} + +void* krb5_copy_ticket(void) +{ + if (verbose) puts("STUB: krb5_copy_ticket called"); + return NULL; +} + +void* krb5_decode_ticket(void) +{ + if (verbose) puts("STUB: krb5_decode_ticket called"); + return NULL; +} + +void* krb5_decrypt(void) +{ + if (verbose) puts("STUB: krb5_decrypt called"); + return NULL; +} + +void* krb5_deltat_to_string(void) +{ + if (verbose) puts("STUB: krb5_deltat_to_string called"); + return NULL; +} + +void* krb5_eblock_enctype(void) +{ + if (verbose) puts("STUB: krb5_eblock_enctype called"); + return NULL; +} + +void* krb5_encrypt(void) +{ + if (verbose) puts("STUB: krb5_encrypt called"); + return NULL; +} + +void* krb5_encrypt_size(void) +{ + if (verbose) puts("STUB: krb5_encrypt_size called"); + return NULL; +} + +void* krb5_enctype_to_string(void) +{ + if (verbose) puts("STUB: krb5_enctype_to_string called"); + return NULL; +} + +void* krb5_finish_key(void) +{ + if (verbose) puts("STUB: krb5_finish_key called"); + return NULL; +} + +void* krb5_finish_random_key(void) +{ + if (verbose) puts("STUB: krb5_finish_random_key called"); + return NULL; +} + +void* krb5_free_addresses(void) +{ + if (verbose) puts("STUB: krb5_free_addresses called"); + return NULL; +} + +void* krb5_free_ap_rep_enc_part(void) +{ + if (verbose) puts("STUB: krb5_free_ap_rep_enc_part called"); + return NULL; +} + +void* krb5_free_authdata(void) +{ + if (verbose) puts("STUB: krb5_free_authdata called"); + return NULL; +} + +void* krb5_free_authenticator(void) +{ + if (verbose) puts("STUB: krb5_free_authenticator called"); + return NULL; +} + +void* krb5_free_checksum(void) +{ + if (verbose) puts("STUB: krb5_free_checksum called"); + return NULL; +} + +void* krb5_free_checksum_contents(void) +{ + if (verbose) puts("STUB: krb5_free_checksum_contents called"); + return NULL; +} + +void* krb5_free_cksumtypes(void) +{ + if (verbose) puts("STUB: krb5_free_cksumtypes called"); + return NULL; +} + +void* krb5_free_config_files(void) +{ + if (verbose) puts("STUB: krb5_free_config_files called"); + return NULL; +} + +void* krb5_free_context(void) +{ + if (verbose) puts("STUB: krb5_free_context called"); + return NULL; +} + +void* krb5_free_cred_contents(void) +{ + if (verbose) puts("STUB: krb5_free_cred_contents called"); + return NULL; +} + +void* krb5_free_creds(void) +{ + if (verbose) puts("STUB: krb5_free_creds called"); + return NULL; +} + +void* krb5_free_data(void) +{ + if (verbose) puts("STUB: krb5_free_data called"); + return NULL; +} + +void* krb5_free_data_contents(void) +{ + if (verbose) puts("STUB: krb5_free_data_contents called"); + return NULL; +} + +void* krb5_free_default_realm(void) +{ + if (verbose) puts("STUB: krb5_free_default_realm called"); + return NULL; +} + +void* krb5_free_enc_tkt_part(void) +{ + if (verbose) puts("STUB: krb5_free_enc_tkt_part called"); + return NULL; +} + +void* krb5_free_error(void) +{ + if (verbose) puts("STUB: krb5_free_error called"); + return NULL; +} + +void* krb5_free_error_message(void) +{ + if (verbose) puts("STUB: krb5_free_error_message called"); + return NULL; +} + +void* krb5_free_host_realm(void) +{ + if (verbose) puts("STUB: krb5_free_host_realm called"); + return NULL; +} + +void* krb5_free_keyblock(void) +{ + if (verbose) puts("STUB: krb5_free_keyblock called"); + return NULL; +} + +void* krb5_free_keyblock_contents(void) +{ + if (verbose) puts("STUB: krb5_free_keyblock_contents called"); + return NULL; +} + +void* krb5_free_keytab_entry_contents(void) +{ + if (verbose) puts("STUB: krb5_free_keytab_entry_contents called"); + return NULL; +} + +void* krb5_free_krbhst(void) +{ + if (verbose) puts("STUB: krb5_free_krbhst called"); + return NULL; +} + +void* krb5_free_principal(void) +{ + if (verbose) puts("STUB: krb5_free_principal called"); + return NULL; +} + +void* krb5_free_tgt_creds(void) +{ + if (verbose) puts("STUB: krb5_free_tgt_creds called"); + return NULL; +} + +void* krb5_free_ticket(void) +{ + if (verbose) puts("STUB: krb5_free_ticket called"); + return NULL; +} + +void* krb5_free_unparsed_name(void) +{ + if (verbose) puts("STUB: krb5_free_unparsed_name called"); + return NULL; +} + +void* krb5_fwd_tgt_creds(void) +{ + if (verbose) puts("STUB: krb5_fwd_tgt_creds called"); + return NULL; +} + +void* krb5_get_credentials(void) +{ + if (verbose) puts("STUB: krb5_get_credentials called"); + return NULL; +} + +void* krb5_get_credentials_renew(void) +{ + if (verbose) puts("STUB: krb5_get_credentials_renew called"); + return NULL; +} + +void* krb5_get_credentials_validate(void) +{ + if (verbose) puts("STUB: krb5_get_credentials_validate called"); + return NULL; +} + +void* krb5_get_default_config_files(void) +{ + if (verbose) puts("STUB: krb5_get_default_config_files called"); + return NULL; +} + +void* krb5_get_default_realm(void) +{ + if (verbose) puts("STUB: krb5_get_default_realm called"); + return NULL; +} + +void* krb5_get_error_message(void) +{ + if (verbose) puts("STUB: krb5_get_error_message called"); + return NULL; +} + +void* krb5_get_host_realm(void) +{ + if (verbose) puts("STUB: krb5_get_host_realm called"); + return NULL; +} + +void* krb5_get_in_tkt(void) +{ + if (verbose) puts("STUB: krb5_get_in_tkt called"); + return NULL; +} + +void* krb5_get_in_tkt_with_keytab(void) +{ + if (verbose) puts("STUB: krb5_get_in_tkt_with_keytab called"); + return NULL; +} + +void* krb5_get_in_tkt_with_password(void) +{ + if (verbose) puts("STUB: krb5_get_in_tkt_with_password called"); + return NULL; +} + +void* krb5_get_in_tkt_with_skey(void) +{ + if (verbose) puts("STUB: krb5_get_in_tkt_with_skey called"); + return NULL; +} + +void* krb5_get_init_creds_keytab(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_keytab called"); + return NULL; +} + +void* krb5_get_init_creds_opt_alloc(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_alloc called"); + return NULL; +} + +void* krb5_get_init_creds_opt_free(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_free called"); + return NULL; +} + +void* krb5_get_init_creds_opt_init(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_init called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_address_list(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_address_list called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_canonicalize(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_canonicalize called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_change_password_prompt(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_change_password_prompt called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_etype_list(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_etype_list called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_forwardable(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_forwardable called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_pa(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_pa called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_preauth_list(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_preauth_list called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_process_last_req(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_process_last_req called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_proxiable(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_proxiable called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_renew_life(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_renew_life called"); + return NULL; +} + +void* krb5_get_init_creds_opt_set_tkt_life(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_opt_set_tkt_life called"); + return NULL; +} + +void* krb5_get_init_creds_password(void) +{ + if (verbose) puts("STUB: krb5_get_init_creds_password called"); + return NULL; +} + +void* krb5_get_krbhst(void) +{ + if (verbose) puts("STUB: krb5_get_krbhst called"); + return NULL; +} + +void* krb5_get_permitted_enctypes(void) +{ + if (verbose) puts("STUB: krb5_get_permitted_enctypes called"); + return NULL; +} + +void* krb5_get_profile(void) +{ + if (verbose) puts("STUB: krb5_get_profile called"); + return NULL; +} + +void* krb5_get_prompt_types(void) +{ + if (verbose) puts("STUB: krb5_get_prompt_types called"); + return NULL; +} + +void* krb5_get_realm_domain(void) +{ + if (verbose) puts("STUB: krb5_get_realm_domain called"); + return NULL; +} + +void* krb5_get_renewed_creds(void) +{ + if (verbose) puts("STUB: krb5_get_renewed_creds called"); + return NULL; +} + +void* krb5_get_server_rcache(void) +{ + if (verbose) puts("STUB: krb5_get_server_rcache called"); + return NULL; +} + +void* krb5_get_time_offsets(void) +{ + if (verbose) puts("STUB: krb5_get_time_offsets called"); + return NULL; +} + +void* krb5_get_validated_creds(void) +{ + if (verbose) puts("STUB: krb5_get_validated_creds called"); + return NULL; +} + +void* krb5_gss_register_acceptor_identity(void) +{ + if (verbose) puts("STUB: krb5_gss_register_acceptor_identity called"); + return NULL; +} + +void* krb5_gss_use_kdc_context(void) +{ + if (verbose) puts("STUB: krb5_gss_use_kdc_context called"); + return NULL; +} + +void* krb5_init_context(void) +{ + if (verbose) puts("STUB: krb5_init_context called"); + return NULL; +} + +void* krb5_init_keyblock(void) +{ + if (verbose) puts("STUB: krb5_init_keyblock called"); + return NULL; +} + +void* krb5_init_random_key(void) +{ + if (verbose) puts("STUB: krb5_init_random_key called"); + return NULL; +} + +void* krb5_init_secure_context(void) +{ + if (verbose) puts("STUB: krb5_init_secure_context called"); + return NULL; +} + +void* krb5_ipc_client_clear_target(void) +{ + if (verbose) puts("STUB: krb5_ipc_client_clear_target called"); + return NULL; +} + +void* krb5_ipc_client_set_target_uid(void) +{ + if (verbose) puts("STUB: krb5_ipc_client_set_target_uid called"); + return NULL; +} + +void* krb5_is_config_principal(void) +{ + if (verbose) puts("STUB: krb5_is_config_principal called"); + return NULL; +} + +void* krb5_is_referral_realm(void) +{ + if (verbose) puts("STUB: krb5_is_referral_realm called"); + return NULL; +} + +void* krb5_is_thread_safe(void) +{ + if (verbose) puts("STUB: krb5_is_thread_safe called"); + return NULL; +} + +void* krb5_kt_add_entry(void) +{ + if (verbose) puts("STUB: krb5_kt_add_entry called"); + return NULL; +} + +void* krb5_kt_close(void) +{ + if (verbose) puts("STUB: krb5_kt_close called"); + return NULL; +} + +void* krb5_kt_default(void) +{ + if (verbose) puts("STUB: krb5_kt_default called"); + return NULL; +} + +void* krb5_kt_default_name(void) +{ + if (verbose) puts("STUB: krb5_kt_default_name called"); + return NULL; +} + +void* krb5_kt_end_seq_get(void) +{ + if (verbose) puts("STUB: krb5_kt_end_seq_get called"); + return NULL; +} + +void* krb5_kt_get_entry(void) +{ + if (verbose) puts("STUB: krb5_kt_get_entry called"); + return NULL; +} + +void* krb5_kt_get_name(void) +{ + if (verbose) puts("STUB: krb5_kt_get_name called"); + return NULL; +} + +void* krb5_kt_get_type(void) +{ + if (verbose) puts("STUB: krb5_kt_get_type called"); + return NULL; +} + +void* krb5_kt_next_entry(void) +{ + if (verbose) puts("STUB: krb5_kt_next_entry called"); + return NULL; +} + +void* krb5_kt_read_service_key(void) +{ + if (verbose) puts("STUB: krb5_kt_read_service_key called"); + return NULL; +} + +void* krb5_kt_remove_entry(void) +{ + if (verbose) puts("STUB: krb5_kt_remove_entry called"); + return NULL; +} + +void* krb5_kt_resolve(void) +{ + if (verbose) puts("STUB: krb5_kt_resolve called"); + return NULL; +} + +void* krb5_kt_start_seq_get(void) +{ + if (verbose) puts("STUB: krb5_kt_start_seq_get called"); + return NULL; +} + +void* krb5_kuserok(void) +{ + if (verbose) puts("STUB: krb5_kuserok called"); + return NULL; +} + +void* krb5_mk_1cred(void) +{ + if (verbose) puts("STUB: krb5_mk_1cred called"); + return NULL; +} + +void* krb5_mk_error(void) +{ + if (verbose) puts("STUB: krb5_mk_error called"); + return NULL; +} + +void* krb5_mk_ncred(void) +{ + if (verbose) puts("STUB: krb5_mk_ncred called"); + return NULL; +} + +void* krb5_mk_priv(void) +{ + if (verbose) puts("STUB: krb5_mk_priv called"); + return NULL; +} + +void* krb5_mk_rep(void) +{ + if (verbose) puts("STUB: krb5_mk_rep called"); + return NULL; +} + +void* krb5_mk_req(void) +{ + if (verbose) puts("STUB: krb5_mk_req called"); + return NULL; +} + +void* krb5_mk_req_extended(void) +{ + if (verbose) puts("STUB: krb5_mk_req_extended called"); + return NULL; +} + +void* krb5_mk_safe(void) +{ + if (verbose) puts("STUB: krb5_mk_safe called"); + return NULL; +} + +void* krb5_os_localaddr(void) +{ + if (verbose) puts("STUB: krb5_os_localaddr called"); + return NULL; +} + +void* krb5_parse_name(void) +{ + if (verbose) puts("STUB: krb5_parse_name called"); + return NULL; +} + +void* krb5_parse_name_flags(void) +{ + if (verbose) puts("STUB: krb5_parse_name_flags called"); + return NULL; +} + +void* krb5_pkinit_cert_hash_str(void) +{ + if (verbose) puts("STUB: krb5_pkinit_cert_hash_str called"); + return NULL; +} + +void* krb5_pkinit_get_client_cert(void) +{ + if (verbose) puts("STUB: krb5_pkinit_get_client_cert called"); + return NULL; +} + +void* krb5_pkinit_get_client_cert_db(void) +{ + if (verbose) puts("STUB: krb5_pkinit_get_client_cert_db called"); + return NULL; +} + +void* krb5_pkinit_get_kdc_cert(void) +{ + if (verbose) puts("STUB: krb5_pkinit_get_kdc_cert called"); + return NULL; +} + +void* krb5_pkinit_get_kdc_cert_db(void) +{ + if (verbose) puts("STUB: krb5_pkinit_get_kdc_cert_db called"); + return NULL; +} + +void* krb5_pkinit_have_client_cert(void) +{ + if (verbose) puts("STUB: krb5_pkinit_have_client_cert called"); + return NULL; +} + +void* krb5_pkinit_release_cert(void) +{ + if (verbose) puts("STUB: krb5_pkinit_release_cert called"); + return NULL; +} + +void* krb5_pkinit_release_cert_db(void) +{ + if (verbose) puts("STUB: krb5_pkinit_release_cert_db called"); + return NULL; +} + +void* krb5_pkinit_set_client_cert(void) +{ + if (verbose) puts("STUB: krb5_pkinit_set_client_cert called"); + return NULL; +} + +void* krb5_principal2salt(void) +{ + if (verbose) puts("STUB: krb5_principal2salt called"); + return NULL; +} + +void* krb5_principal_compare(void) +{ + if (verbose) puts("STUB: krb5_principal_compare called"); + return NULL; +} + +void* krb5_process_key(void) +{ + if (verbose) puts("STUB: krb5_process_key called"); + return NULL; +} + +void* krb5_prompter_posix(void) +{ + if (verbose) puts("STUB: krb5_prompter_posix called"); + return NULL; +} + +void* krb5_random_key(void) +{ + if (verbose) puts("STUB: krb5_random_key called"); + return NULL; +} + +void* krb5_rd_cred(void) +{ + if (verbose) puts("STUB: krb5_rd_cred called"); + return NULL; +} + +void* krb5_rd_error(void) +{ + if (verbose) puts("STUB: krb5_rd_error called"); + return NULL; +} + +void* krb5_rd_priv(void) +{ + if (verbose) puts("STUB: krb5_rd_priv called"); + return NULL; +} + +void* krb5_rd_rep(void) +{ + if (verbose) puts("STUB: krb5_rd_rep called"); + return NULL; +} + +void* krb5_rd_req(void) +{ + if (verbose) puts("STUB: krb5_rd_req called"); + return NULL; +} + +void* krb5_rd_safe(void) +{ + if (verbose) puts("STUB: krb5_rd_safe called"); + return NULL; +} + +void* krb5_read_password(void) +{ + if (verbose) puts("STUB: krb5_read_password called"); + return NULL; +} + +void* krb5_realm_compare(void) +{ + if (verbose) puts("STUB: krb5_realm_compare called"); + return NULL; +} + +void* krb5_recvauth(void) +{ + if (verbose) puts("STUB: krb5_recvauth called"); + return NULL; +} + +void* krb5_recvauth_version(void) +{ + if (verbose) puts("STUB: krb5_recvauth_version called"); + return NULL; +} + +void* krb5_salttype_to_string(void) +{ + if (verbose) puts("STUB: krb5_salttype_to_string called"); + return NULL; +} + +void* krb5_sendauth(void) +{ + if (verbose) puts("STUB: krb5_sendauth called"); + return NULL; +} + +void* krb5_server_decrypt_ticket_keytab(void) +{ + if (verbose) puts("STUB: krb5_server_decrypt_ticket_keytab called"); + return NULL; +} + +void* krb5_set_default_realm(void) +{ + if (verbose) puts("STUB: krb5_set_default_realm called"); + return NULL; +} + +void* krb5_set_default_tgs_enctypes(void) +{ + if (verbose) puts("STUB: krb5_set_default_tgs_enctypes called"); + return NULL; +} + +void* krb5_set_default_tgs_ktypes(void) +{ + if (verbose) puts("STUB: krb5_set_default_tgs_ktypes called"); + return NULL; +} + +void* krb5_set_error_message(void) +{ + if (verbose) puts("STUB: krb5_set_error_message called"); + return NULL; +} + +void* krb5_set_password(void) +{ + if (verbose) puts("STUB: krb5_set_password called"); + return NULL; +} + +void* krb5_set_password_using_ccache(void) +{ + if (verbose) puts("STUB: krb5_set_password_using_ccache called"); + return NULL; +} + +void* krb5_set_principal_realm(void) +{ + if (verbose) puts("STUB: krb5_set_principal_realm called"); + return NULL; +} + +void* krb5_set_real_time(void) +{ + if (verbose) puts("STUB: krb5_set_real_time called"); + return NULL; +} + +void* krb5_sname_to_principal(void) +{ + if (verbose) puts("STUB: krb5_sname_to_principal called"); + return NULL; +} + +void* krb5_string_to_cksumtype(void) +{ + if (verbose) puts("STUB: krb5_string_to_cksumtype called"); + return NULL; +} + +void* krb5_string_to_deltat(void) +{ + if (verbose) puts("STUB: krb5_string_to_deltat called"); + return NULL; +} + +void* krb5_string_to_enctype(void) +{ + if (verbose) puts("STUB: krb5_string_to_enctype called"); + return NULL; +} + +void* krb5_string_to_key(void) +{ + if (verbose) puts("STUB: krb5_string_to_key called"); + return NULL; +} + +void* krb5_string_to_salttype(void) +{ + if (verbose) puts("STUB: krb5_string_to_salttype called"); + return NULL; +} + +void* krb5_string_to_timestamp(void) +{ + if (verbose) puts("STUB: krb5_string_to_timestamp called"); + return NULL; +} + +void* krb5_timeofday(void) +{ + if (verbose) puts("STUB: krb5_timeofday called"); + return NULL; +} + +void* krb5_timestamp_to_sfstring(void) +{ + if (verbose) puts("STUB: krb5_timestamp_to_sfstring called"); + return NULL; +} + +void* krb5_timestamp_to_string(void) +{ + if (verbose) puts("STUB: krb5_timestamp_to_string called"); + return NULL; +} + +void* krb5_unparse_name(void) +{ + if (verbose) puts("STUB: krb5_unparse_name called"); + return NULL; +} + +void* krb5_unparse_name_ext(void) +{ + if (verbose) puts("STUB: krb5_unparse_name_ext called"); + return NULL; +} + +void* krb5_unparse_name_flags(void) +{ + if (verbose) puts("STUB: krb5_unparse_name_flags called"); + return NULL; +} + +void* krb5_unparse_name_flags_ext(void) +{ + if (verbose) puts("STUB: krb5_unparse_name_flags_ext called"); + return NULL; +} + +void* krb5_us_timeofday(void) +{ + if (verbose) puts("STUB: krb5_us_timeofday called"); + return NULL; +} + +void* krb5_use_enctype(void) +{ + if (verbose) puts("STUB: krb5_use_enctype called"); + return NULL; +} + +void* krb5_verify_checksum(void) +{ + if (verbose) puts("STUB: krb5_verify_checksum called"); + return NULL; +} + +void* krb5_verify_init_creds(void) +{ + if (verbose) puts("STUB: krb5_verify_init_creds called"); + return NULL; +} + +void* krb5_verify_init_creds_opt_init(void) +{ + if (verbose) puts("STUB: krb5_verify_init_creds_opt_init called"); + return NULL; +} + +void* krb5_verify_init_creds_opt_set_ap_req_nofail(void) +{ + if (verbose) puts("STUB: krb5_verify_init_creds_opt_set_ap_req_nofail called"); + return NULL; +} + +void* krb5_vset_error_message(void) +{ + if (verbose) puts("STUB: krb5_vset_error_message called"); + return NULL; +} + +void* krb5int_accessor(void) +{ + if (verbose) puts("STUB: krb5int_accessor called"); + return NULL; +} + +void* krb5int_freeaddrinfo(void) +{ + if (verbose) puts("STUB: krb5int_freeaddrinfo called"); + return NULL; +} + +void* krb5int_gai_strerror(void) +{ + if (verbose) puts("STUB: krb5int_gai_strerror called"); + return NULL; +} + +void* krb5int_getaddrinfo(void) +{ + if (verbose) puts("STUB: krb5int_getaddrinfo called"); + return NULL; +} + +void* krb5int_gmt_mktime(void) +{ + if (verbose) puts("STUB: krb5int_gmt_mktime called"); + return NULL; +} + +void* krb5int_init_context_kdc(void) +{ + if (verbose) puts("STUB: krb5int_init_context_kdc called"); + return NULL; +} + +void* krb5int_pkinit_auth_pack_decode(void) +{ + if (verbose) puts("STUB: krb5int_pkinit_auth_pack_decode called"); + return NULL; +} + +void* krb5int_pkinit_create_cms_msg(void) +{ + if (verbose) puts("STUB: krb5int_pkinit_create_cms_msg called"); + return NULL; +} + +void* krb5int_pkinit_pa_pk_as_rep_encode(void) +{ + if (verbose) puts("STUB: krb5int_pkinit_pa_pk_as_rep_encode called"); + return NULL; +} + +void* krb5int_pkinit_pa_pk_as_req_decode(void) +{ + if (verbose) puts("STUB: krb5int_pkinit_pa_pk_as_req_decode called"); + return NULL; +} + +void* krb5int_pkinit_parse_cms_msg(void) +{ + if (verbose) puts("STUB: krb5int_pkinit_parse_cms_msg called"); + return NULL; +} + +void* krb5int_pkinit_reply_key_pack_encode(void) +{ + if (verbose) puts("STUB: krb5int_pkinit_reply_key_pack_encode called"); + return NULL; +} + +void* krb__get_srvtabname(void) +{ + if (verbose) puts("STUB: krb__get_srvtabname called"); + return NULL; +} + +void* krb_change_password(void) +{ + if (verbose) puts("STUB: krb_change_password called"); + return NULL; +} + +void* krb_check_auth(void) +{ + if (verbose) puts("STUB: krb_check_auth called"); + return NULL; +} + +void* krb_delete_cred(void) +{ + if (verbose) puts("STUB: krb_delete_cred called"); + return NULL; +} + +void* krb_get_admhst(void) +{ + if (verbose) puts("STUB: krb_get_admhst called"); + return NULL; +} + +void* krb_get_cred(void) +{ + if (verbose) puts("STUB: krb_get_cred called"); + return NULL; +} + +void* krb_get_err_text(void) +{ + if (verbose) puts("STUB: krb_get_err_text called"); + return NULL; +} + +void* krb_get_in_tkt(void) +{ + if (verbose) puts("STUB: krb_get_in_tkt called"); + return NULL; +} + +void* krb_get_in_tkt_creds(void) +{ + if (verbose) puts("STUB: krb_get_in_tkt_creds called"); + return NULL; +} + +void* krb_get_krbhst(void) +{ + if (verbose) puts("STUB: krb_get_krbhst called"); + return NULL; +} + +void* krb_get_lrealm(void) +{ + if (verbose) puts("STUB: krb_get_lrealm called"); + return NULL; +} + +void* krb_get_nth_cred(void) +{ + if (verbose) puts("STUB: krb_get_nth_cred called"); + return NULL; +} + +void* krb_get_num_cred(void) +{ + if (verbose) puts("STUB: krb_get_num_cred called"); + return NULL; +} + +void* krb_get_phost(void) +{ + if (verbose) puts("STUB: krb_get_phost called"); + return NULL; +} + +void* krb_get_profile(void) +{ + if (verbose) puts("STUB: krb_get_profile called"); + return NULL; +} + +void* krb_get_pw_in_tkt(void) +{ + if (verbose) puts("STUB: krb_get_pw_in_tkt called"); + return NULL; +} + +void* krb_get_pw_in_tkt_creds(void) +{ + if (verbose) puts("STUB: krb_get_pw_in_tkt_creds called"); + return NULL; +} + +void* krb_get_svc_in_tkt(void) +{ + if (verbose) puts("STUB: krb_get_svc_in_tkt called"); + return NULL; +} + +void* krb_get_tf_fullname(void) +{ + if (verbose) puts("STUB: krb_get_tf_fullname called"); + return NULL; +} + +void* krb_get_tf_realm(void) +{ + if (verbose) puts("STUB: krb_get_tf_realm called"); + return NULL; +} + +void* krb_get_ticket_for_service(void) +{ + if (verbose) puts("STUB: krb_get_ticket_for_service called"); + return NULL; +} + +void* krb_life_to_time(void) +{ + if (verbose) puts("STUB: krb_life_to_time called"); + return NULL; +} + +void* krb_mk_auth(void) +{ + if (verbose) puts("STUB: krb_mk_auth called"); + return NULL; +} + +void* krb_mk_err(void) +{ + if (verbose) puts("STUB: krb_mk_err called"); + return NULL; +} + +void* krb_mk_priv(void) +{ + if (verbose) puts("STUB: krb_mk_priv called"); + return NULL; +} + +void* krb_mk_req(void) +{ + if (verbose) puts("STUB: krb_mk_req called"); + return NULL; +} + +void* krb_mk_req_creds(void) +{ + if (verbose) puts("STUB: krb_mk_req_creds called"); + return NULL; +} + +void* krb_mk_safe(void) +{ + if (verbose) puts("STUB: krb_mk_safe called"); + return NULL; +} + +void* krb_rd_err(void) +{ + if (verbose) puts("STUB: krb_rd_err called"); + return NULL; +} + +void* krb_rd_priv(void) +{ + if (verbose) puts("STUB: krb_rd_priv called"); + return NULL; +} + +void* krb_rd_req(void) +{ + if (verbose) puts("STUB: krb_rd_req called"); + return NULL; +} + +void* krb_rd_req_int(void) +{ + if (verbose) puts("STUB: krb_rd_req_int called"); + return NULL; +} + +void* krb_rd_safe(void) +{ + if (verbose) puts("STUB: krb_rd_safe called"); + return NULL; +} + +void* krb_realmofhost(void) +{ + if (verbose) puts("STUB: krb_realmofhost called"); + return NULL; +} + +void* krb_recvauth(void) +{ + if (verbose) puts("STUB: krb_recvauth called"); + return NULL; +} + +void* krb_sendauth(void) +{ + if (verbose) puts("STUB: krb_sendauth called"); + return NULL; +} + +void* krb_set_lifetime(void) +{ + if (verbose) puts("STUB: krb_set_lifetime called"); + return NULL; +} + +void* krb_set_tkt_string(void) +{ + if (verbose) puts("STUB: krb_set_tkt_string called"); + return NULL; +} + +void* krb_time_to_life(void) +{ + if (verbose) puts("STUB: krb_time_to_life called"); + return NULL; +} + +void* kuserok(void) +{ + if (verbose) puts("STUB: kuserok called"); + return NULL; +} + +void* profile_abandon(void) +{ + if (verbose) puts("STUB: profile_abandon called"); + return NULL; +} + +void* profile_add_relation(void) +{ + if (verbose) puts("STUB: profile_add_relation called"); + return NULL; +} + +void* profile_clear_relation(void) +{ + if (verbose) puts("STUB: profile_clear_relation called"); + return NULL; +} + +void* profile_configuration_updated(void) +{ + if (verbose) puts("STUB: profile_configuration_updated called"); + return NULL; +} + +void* profile_flush(void) +{ + if (verbose) puts("STUB: profile_flush called"); + return NULL; +} + +void* profile_flush_to_buffer(void) +{ + if (verbose) puts("STUB: profile_flush_to_buffer called"); + return NULL; +} + +void* profile_flush_to_file(void) +{ + if (verbose) puts("STUB: profile_flush_to_file called"); + return NULL; +} + +void* profile_free_buffer(void) +{ + if (verbose) puts("STUB: profile_free_buffer called"); + return NULL; +} + +void* profile_free_list(void) +{ + if (verbose) puts("STUB: profile_free_list called"); + return NULL; +} + +void* profile_get_boolean(void) +{ + if (verbose) puts("STUB: profile_get_boolean called"); + return NULL; +} + +void* profile_get_integer(void) +{ + if (verbose) puts("STUB: profile_get_integer called"); + return NULL; +} + +void* profile_get_relation_names(void) +{ + if (verbose) puts("STUB: profile_get_relation_names called"); + return NULL; +} + +void* profile_get_string(void) +{ + if (verbose) puts("STUB: profile_get_string called"); + return NULL; +} + +void* profile_get_subsection_names(void) +{ + if (verbose) puts("STUB: profile_get_subsection_names called"); + return NULL; +} + +void* profile_get_values(void) +{ + if (verbose) puts("STUB: profile_get_values called"); + return NULL; +} + +void* profile_init(void) +{ + if (verbose) puts("STUB: profile_init called"); + return NULL; +} + +void* profile_init_path(void) +{ + if (verbose) puts("STUB: profile_init_path called"); + return NULL; +} + +void* profile_is_modified(void) +{ + if (verbose) puts("STUB: profile_is_modified called"); + return NULL; +} + +void* profile_is_writable(void) +{ + if (verbose) puts("STUB: profile_is_writable called"); + return NULL; +} + +void* profile_iterator(void) +{ + if (verbose) puts("STUB: profile_iterator called"); + return NULL; +} + +void* profile_iterator_create(void) +{ + if (verbose) puts("STUB: profile_iterator_create called"); + return NULL; +} + +void* profile_iterator_free(void) +{ + if (verbose) puts("STUB: profile_iterator_free called"); + return NULL; +} + +void* profile_release(void) +{ + if (verbose) puts("STUB: profile_release called"); + return NULL; +} + +void* profile_release_string(void) +{ + if (verbose) puts("STUB: profile_release_string called"); + return NULL; +} + +void* profile_rename_section(void) +{ + if (verbose) puts("STUB: profile_rename_section called"); + return NULL; +} + +void* profile_update_relation(void) +{ + if (verbose) puts("STUB: profile_update_relation called"); + return NULL; +} + +void* put_svc_key(void) +{ + if (verbose) puts("STUB: put_svc_key called"); + return NULL; +} + +void* read_service_key(void) +{ + if (verbose) puts("STUB: read_service_key called"); + return NULL; +} + +void* remove_error_table(void) +{ + if (verbose) puts("STUB: remove_error_table called"); + return NULL; +} + +void* reset_com_err_hook(void) +{ + if (verbose) puts("STUB: reset_com_err_hook called"); + return NULL; +} + +void* set_com_err_hook(void) +{ + if (verbose) puts("STUB: set_com_err_hook called"); + return NULL; +} + +void* tkt_string(void) +{ + if (verbose) puts("STUB: tkt_string called"); + return NULL; +} diff --git a/src/frameworks/MapKit/CMakeLists.txt b/src/frameworks/MapKit/CMakeLists.txt new file mode 100644 index 000000000..a16e6a456 --- /dev/null +++ b/src/frameworks/MapKit/CMakeLists.txt @@ -0,0 +1,390 @@ +project(MapKit) + +set(DYLIB_COMPAT_VERSION "1.0.0") +set(DYLIB_CURRENT_VERSION "0.0.0") + +add_framework(MapKit + FAT + CURRENT_VERSION + VERSION "A" + + SOURCES + src/MapKit.m + src/MKMouseOverLabelRecognizer.m + src/MKURLParser.m + src/MKPlaceSectionHeaderView.m + src/MKMapGestureController.m + src/_MKConditionalPanGestureRecognizer.m + src/_MKDirectionalPanGestureRecognizer.m + src/_MKMouseDownGestureRecognizer.m + src/_MKMagnificationGestureRecognizer.m + src/_MKRotationGestureRecognizer.m + src/_MKDirectionalArrowRecognizer.m + src/MKMapSnapshotCreator.m + src/MKArtworkImageView.m + src/MKLocationManager.m + src/MKLocationManagerSingleUpdater.m + src/_MKWiFiObserver.m + src/MKThrottledGate.m + src/MKPlaceHoursViewController.m + src/MKPlaceHoursDayRow.m + src/MKPlaceMessageHoursViewController.m + src/MKRotationFilter.m + src/_MXExtensionVendorContext.m + src/_MKPinAnnotationViewImageCache.m + src/_MKPinAnnotationViewImageCacheKey.m + src/MKTransitIncidentSummaryCell.m + src/MKPlaceTextCell.m + src/_GEOTransitLineMarker.m + src/MKTransitDeparturesViewController.m + src/MKImageTextAttachment.m + src/MKBlurBackedControlProxy.m + src/MKBlurBackedControlView.m + src/MKToVKOverlayAdaptor.m + src/_MKStackView.m + src/MKUserLocationAnnotationViewProxy.m + src/_MKTableViewController.m + src/_MKClickableTableView.m + src/_MKClickableTableViewController.m + src/_MKTableViewControllerRootView.m + src/_MKMapItemPlaceItem.m + src/_MKContactPlaceItem.m + src/MKTransitInfoLabelView.m + src/MKDirectionsResponse.m + src/MKRoute.m + src/MKRouteStep.m + src/MKRoutePolyline.m + src/MKRouteStepPolyline.m + src/MKETAResponse.m + src/MKCustomSeparatorTableViewCell.m + src/MKPhotoSmallAttributionView.m + src/MKPhotoBigAttributionView.m + src/MKPlacePhotosViewController.m + src/_MXSerialQueue.m + src/MKMapItemMetadata.m + src/MKOrientationContext.m + src/MKAnnotationContainerView.m + src/_MXExtensionRideSharingSearchRequest.m + src/_MXExtensionRideSharingSearchResponse.m + src/_MXExtensionRideSharingRide.m + src/MKMapItemPhoto.m + src/_MKTransitInactiveLine.m + src/MKTransitInactiveLinesSectionController.m + src/_MKMapItemAttribution.m + src/_MKMapItemPlaceAttribution.m + src/_MKMapItemPhotosAttribution.m + src/_MKMapItemReviewsAttribution.m + src/MKTransitIncidentStringProvider.m + src/MKPlaceInfoContactRowView.m + src/MKPlaceInfoPhoneNumberView.m + src/MKPlaceInfoURLRowView.m + src/MKPlaceInfoEmailRowView.m + src/MKPlaceInfoPostalAddressRowView.m + src/MKPlaceInfoBusinessMessageRowView.m + src/MKAccessiblePlatterView.m + src/_MKMultiPartLabelCacheKey.m + src/_MKTokenAttributedString.m + src/_MKLineHeaderModel.m + src/_MKDataHeaderModel.m + src/MKUserLocationView.m + src/MKModernUserLocationView.m + src/_MKGemUserLocationView.m + src/MKPlaceReviewsViewController.m + src/MKImageView.m + src/MKZoomSegmentedControl.m + src/_MXExtensionRequestDispatcher.m + src/MKAttributedStringBlendingConfiguration.m + src/MKMapSnapshotFeatureAnnotation.m + src/MKCompassView.m + src/MKTransitItemIncidentCell.m + src/MKEmptyTextAttachment.m + src/MKResizedArtworkDataSourceCache.m + src/MKTransitDeparturesSectionHeaderView.m + src/_MKPlaceViewController.m + src/MKMouseOverActionView.m + src/MKBlurBackingView.m + src/MKTrailingAlignedButtonCell.m + src/MKTrailingAlignedButton.m + src/_MKRightImageButton.m + src/_MKBalloonContainerView.m + src/_MKBalloonCalloutView.m + src/MKTrafficSupport.m + src/MKPlaceHeaderButton.m + src/MKResizableImage.m + src/MKLocalSearchCompletion.m + src/MKLocalSearchCompleter.m + src/MKLabelMarker.m + src/MKSmallCalloutView.m + src/_MKSmallCalloutPassthroughButton.m + src/_MKSmallCalloutContainerView.m + src/_MKCalloutAccessoryWrapperView.m + src/_MKCalloutDetailWrapperView.m + src/MKMultiPartAttributedString.m + src/MKTransitItemIncidentsController.m + src/MKTransitArtwork.m + src/MKTransitShield.m + src/MKTransitIcon.m + src/_NSImageRepAdaptiveToScale.m + src/_NSImageAdaptiveToScale.m + src/MKThreadContext.m + src/MKQuadTrie.m + src/MKTransitLoadingTableViewCell.m + src/_MXExtensionContext.m + src/MKMultiPartLabel.m + src/MKCoreLocationProvider.m + src/MKLinkTextField.m + src/MKInfoCardDetailView.m + src/MKVibrancyAwareLabelView.m + src/_MKSortedDepartureCollection.m + src/MKTransitDeparturesSectionController.m + src/MKPlaceReservationRowView.m + src/MKCALayerCompletionDelegate.m + src/MKLayer.m + src/MKURLSerializer.m + src/MKPlaceCardFooterActionsViewController.m + src/_MKSpatialColliderPairSet.m + src/MKSpatialCollider.m + src/_MXExtensionLookupPolicy.m + src/_MXExtensionManager.m + src/MKLocalSearchKeypressMetrics.m + src/MKInfoCardThemeManager.m + src/_MKLocalizedHoursBuilder.m + src/MKImageAttachmentCell.m + src/MKSystemController.m + src/_MKPlaceReservationInfo.m + src/_MKLocationShifter.m + src/MKURLHandler.m + src/GEOEncyclopedicInfoUserLocation.m + src/MKPlaceEncyclopedicTextItem.m + src/MKPlaceEncyclopedicFactoidView.m + src/MKPlaceEncyclopedicRowView.m + src/MKPlaceEncyclopedicViewController.m + src/MKIconManager.m + src/_MKIconDiskCache.m + src/MKMapAttribution.m + src/MKMapAttributionImage.m + src/_MKDistanceDetailProvider.m + src/_MKMapItemUserRatingSnippetReview.m + src/_MKMapItemUserRatingSnippetTip.m + src/MKMapItem.m + src/MKMapView.m + src/_MKAnnotationDragGestureRecognizer.m + src/_MKMapViewSuspendedEffectsToken.m + src/MKPlaceSectionRowView.m + src/MKMapItemIdentifier.m + src/MKBlurBackingLayer.m + src/_MXExtensionHostContext.m + src/MKEmptyTextAttachmentCell.m + src/MKPlaceSectionViewController.m + src/MKPointAnnotation.m + src/_MKPlaceInlineMapCustomFeature.m + src/MKPlaceInlineMapViewController.m + src/_MKPlaceInlineMapContentView.m + src/MKPlacePoisInlineMapViewController.m + src/_MKPlacePoisInlineMapContentView.m + src/MKTransitAttributionViewController.m + src/MKPlacemark.m + src/MKActionRowItemButton.m + src/MKActionRowItemView.m + src/MKPlaceCardActionsRowViewController.m + src/_MXExtensionBaseMapRequest.m + src/_MXExtensionBaseMapFeature.m + src/_MXExtensionBaseMapNamedImage.m + src/_MXExtensionBaseMapResponse.m + src/_MXExtensionBaseMapServiceRequestDispatcher.m + src/MKTransitLineIncidentsViewController.m + src/MKTransitDeparturesCell.m + src/MKMapCamera.m + src/_MKLeadingAlignedButtonCell.m + src/_MKLeadingAlignedButton.m + src/_MKLabelMarkerItem.m + src/MKSearchCompletion.m + src/MKAnnotationManager.m + src/MKClusterAnnotation.m + src/MKURLBuilder.m + src/MKTableViewCell.m + src/_MKUILabel.m + src/MKUILabelNoAutoFontSmoothingBackground.m + src/_MKJunctionElement.m + src/MKJunction.m + src/MKLocalSearch.m + src/MKTransitMessageCell.m + src/MKTransitSystemCell.m + src/MKLocalSearchRequest.m + src/_MKLocalSearchMerchantParameters.m + src/_MKLocalSearchExternalTransitLookupParameters.m + src/MKWalletRAPReport.m + src/MKCalloutView.m + src/_MKCalloutContentView.m + src/MKStandardCalloutView.m + src/MKAccessibilityItem.m + src/_MKPlatterImageViewNoAutoLayout.m + src/MKPlatterView.m + src/_MKLabelMarkerView.m + src/_MKBalloonLabelMarkerView.m + src/MKInfoCardReportAProblemController.m + src/MKAutocompleteAnalyticsProvider.m + src/MKAutocompleteAnalyticsState.m + src/MKServerFormattedStringParameters.m + src/MKServerFormattedString.m + src/MKTransitAttributionSummaryCell.m + src/MKLocalSearchResponse.m + src/MKAttributedStringVibrancySplitter.m + src/MKCircle.m + src/_MKRouteETA.m + src/_MKRouteETAFetcher.m + src/_MKQuickRouteManager.m + src/MKAllRouteETAsManager.m + src/MKPlaceInfoRow.m + src/MKPlaceInfoViewController.m + src/MKPlaceUnfinishedViewController.m + src/MKPolyline.m + src/MKShape.m + src/MKPinAnnotationView.m + src/_MKStackingViewControllerHeaderView.m + src/MKMultiPoint.m + src/MKAttributeUtils.m + src/MKPolygon.m + src/MKWalletMerchantLookupRequest.m + src/MKWalletMerchantStylingInfo.m + src/MKWalletMerchantResponse.m + src/_mkMapServiceWalletMerchantTicket.m + src/MKPlaceBusinessInfoViewController.m + src/_MKPlaceBusinessInfoRow.m + src/_MKPlaceBusinessInfoItem.m + src/MKPlaceTextBlockCell.m + src/MKGeodesicPolyline.m + src/MKCircleRenderer.m + src/MKArtworkDataSourceCache.m + src/MKETAProvider.m + src/_MKUIViewController.m + src/_MKUIViewControllerRootView.m + src/_MKUIViewControllerClickableRootView.m + src/MKStackingViewController.m + src/_MKStackingPlaceholderView.m + src/_MKStackingContentView.m + src/MKPlaceReservationViewController.m + src/_MXExtensionHostViewController.m + src/NVMapScaleSegment.m + src/MKScaleView.m + src/MKPlaceHeaderButtonsViewController.m + src/_MKMultiPartLabelMetrics.m + src/MKTransitDepartureServiceGapFormatter.m + src/MKTransitDepartureServiceGapFormatterResult.m + src/MKOverlayPathRenderer.m + src/MKOverlayRenderer.m + src/_MKCustomFeatureStore.m + src/_MKTransitConnectionCell.m + src/MKViewWithHairline.m + src/MKPolygonRenderer.m + src/MKPolylineRenderer.m + src/MKTransitArtworkManager.m + src/MKDirectionsRequest.m + src/MKThemeMultiPartLabel.m + src/MKSeparator.m + src/MKButtonWithTargetArgument.m + src/MKPlaceSectionItemView.m + src/MKPlaceSectionView.m + src/MKServiceHoursRow.m + src/MKPlaceServiceHoursViewController.m + src/NVAttributeAttachmentCell.m + src/MKAttributeLabelModel.m + src/_MXVersion.m + src/_MKKVOProxy.m + src/MKDistanceFormatter.m + src/_MKMultiPartStringComponent.m + src/MKDirections.m + src/MKPlaceActivityProvider.m + src/MKPlaceTextActivityProvider.m + src/MKPlaceURLActivityProvider.m + src/MKPlaceMapItemActivityProvider.m + src/MKPlaceLocVCardActivityProvider.m + src/MKRouteActivityProvider.m + src/MKRouteTextActivityProvider.m + src/MKRouteURLActivityProvider.m + src/MKMapItemMetadataRequest.m + src/MKMapItemMetadataImageRequest.m + src/MKMapItemMetadataRequester.m + src/MKPlaceAttributionCellButton.m + src/MKPlaceAttributionLabel.m + src/MKPlaceAttributionCell.m + src/MKPlaceAttributionViewController.m + src/MKLayoutCardViewController.m + src/_MXExtensionRequestReceipt.m + src/_MXExtensionService.m + src/MKPlaceCardHeaderViewController.m + src/MKSharingController.m + src/MKTileOverlay.m + src/MKTileOverlayTile.m + src/MKTileOverlayRequester.m + src/MKTileOverlayRequesterOp.m + src/_MKScaleViewTransitionDelegate.m + src/_MKTicket.m + src/_MKSearchTicket.m + src/_MKProblemReportTicket.m + src/_MKCategoriesTicket.m + src/_MKSearchFieldPlaceholderTicket.m + src/_MKTransitLineTicket.m + src/MKMapService.m + src/MKAnnotationViewInternal.m + src/MKAnnotationView.m + src/_MKAnnotationViewAnchor.m + src/_MKAnnotationViewCustomFeatureAnnotation.m + src/MKStarRatingView.m + src/MKStarRatingAndLabelView.m + src/MKTransitIncidentsViewController.m + src/_MKPlaceActionButtonController.m + src/_MXExtension.m + src/_MXExtensionVendorViewController.m + src/MKCalloutLayer.m + src/MKCalloutShadowView.m + src/MKAttributionLabel.m + src/MKTileOverlayRenderer.m + src/MKOverlayContainerView.m + src/MKTransitSectionController.m + src/MKPlaceReviewAvatarGenerator.m + src/MKPlaceReviewsViewCell.m + src/_MKEnvironmentLabel.m + src/MKSizedTransitArtwork.m + src/_MKAppImageManagerContainer.m + src/MKAppImageManager.m + src/MKMapSnapshotOptions.m + src/_MKResizingLayer.m + src/_MKCalloutLayer.m + src/_MXExtensionInternalServiceRequestDispatcher.m + src/_MXExtensionInternalStreamingServiceRequestDispatcher.m + src/MKIncidentTextView.m + src/MKTransitIncidentDetailCell.m + src/_MKResultView.m + src/MKPlaceTopBarViewController.m + src/MKPlaceHoursView.m + src/MKPlaceServiceHoursView.m + src/MKPlaceCompleteHoursView.m + src/MKPlaceHoursViewHelper.m + src/MKMapSnapshot.m + src/MKPlaceCardActionItem.m + src/MKPlaceActionManager.m + src/MKTransitLineItemViewController.m + src/MKUserLocationAnnotation.m + src/MKUserLocationInternal.m + src/MKUserLocation.m + src/MKMapSnapshotter.m + src/MKTransitItemController.m + src/MKPlaceCardActionSectionView.m + src/MKPlaceCardActionsViewController.m + src/MKCompassLayer.m + src/_MXBundleBlacklistEntry.m + src/_MXExtensionMatchingMerger.m + src/_MXExtensionDispatchCenter.m + src/_MXExtensionContainingAppProxy.m + src/_MXExtensionServiceCenter.m + src/_MXAssetStorage.m + src/_MXExtensionProvider.m + src/_MKFakeNil.m + src/MKTransitSectionPagingFilter.m + + DEPENDENCIES + system + objc + Foundation +) diff --git a/src/frameworks/MapKit/include/MapKit/CAAnimationDelegate.h b/src/frameworks/MapKit/include/MapKit/CAAnimationDelegate.h new file mode 100644 index 000000000..03327b108 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/CAAnimationDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 CAAnimationDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/CALayerDelegate.h b/src/frameworks/MapKit/include/MapKit/CALayerDelegate.h new file mode 100644 index 000000000..dcbc04a65 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/CALayerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 CALayerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/CLLocationManagerDelegate.h b/src/frameworks/MapKit/include/MapKit/CLLocationManagerDelegate.h new file mode 100644 index 000000000..468c7879b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/CLLocationManagerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 CLLocationManagerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOEncyclopedicInfo.h b/src/frameworks/MapKit/include/MapKit/GEOEncyclopedicInfo.h new file mode 100644 index 000000000..514493292 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOEncyclopedicInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOEncyclopedicInfo + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOEncyclopedicInfoUserLocation.h b/src/frameworks/MapKit/include/MapKit/GEOEncyclopedicInfoUserLocation.h new file mode 100644 index 000000000..fa8a97ad1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOEncyclopedicInfoUserLocation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOEncyclopedicInfoUserLocation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOLogContextDelegate.h b/src/frameworks/MapKit/include/MapKit/GEOLogContextDelegate.h new file mode 100644 index 000000000..4d680f8ce --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOLogContextDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOLogContextDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOMapItem.h b/src/frameworks/MapKit/include/MapKit/GEOMapItem.h new file mode 100644 index 000000000..f6e6a7408 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOMapItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOMapItem + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOResourceManifestTileGroupObserver.h b/src/frameworks/MapKit/include/MapKit/GEOResourceManifestTileGroupObserver.h new file mode 100644 index 000000000..c6480eca7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOResourceManifestTileGroupObserver.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOResourceManifestTileGroupObserver + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOTransitArtworkDataSource.h b/src/frameworks/MapKit/include/MapKit/GEOTransitArtworkDataSource.h new file mode 100644 index 000000000..a9f166b01 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOTransitArtworkDataSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOTransitArtworkDataSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOTransitIconDataSource.h b/src/frameworks/MapKit/include/MapKit/GEOTransitIconDataSource.h new file mode 100644 index 000000000..eeb9b8951 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOTransitIconDataSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOTransitIconDataSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOTransitLabelItem.h b/src/frameworks/MapKit/include/MapKit/GEOTransitLabelItem.h new file mode 100644 index 000000000..6826f1043 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOTransitLabelItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOTransitLabelItem + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOTransitShieldDataSource.h b/src/frameworks/MapKit/include/MapKit/GEOTransitShieldDataSource.h new file mode 100644 index 000000000..f28353669 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOTransitShieldDataSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOTransitShieldDataSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOURLSerializable.h b/src/frameworks/MapKit/include/MapKit/GEOURLSerializable.h new file mode 100644 index 000000000..b24818921 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOURLSerializable.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOURLSerializable + +@end diff --git a/src/frameworks/MapKit/include/MapKit/GEOUsageKeypressEventProtocol.h b/src/frameworks/MapKit/include/MapKit/GEOUsageKeypressEventProtocol.h new file mode 100644 index 000000000..8fe8fe657 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/GEOUsageKeypressEventProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 GEOUsageKeypressEventProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAccessibilityItem.h b/src/frameworks/MapKit/include/MapKit/MKAccessibilityItem.h new file mode 100644 index 000000000..cc6952168 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAccessibilityItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAccessibilityItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAccessiblePlatterView.h b/src/frameworks/MapKit/include/MapKit/MKAccessiblePlatterView.h new file mode 100644 index 000000000..109a1a67d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAccessiblePlatterView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAccessiblePlatterView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKActionRowItemButton.h b/src/frameworks/MapKit/include/MapKit/MKActionRowItemButton.h new file mode 100644 index 000000000..f57167a8b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKActionRowItemButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKActionRowItemButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKActionRowItemView.h b/src/frameworks/MapKit/include/MapKit/MKActionRowItemView.h new file mode 100644 index 000000000..c16e0896a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKActionRowItemView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKActionRowItemView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKActionRowItemViewDelegate.h b/src/frameworks/MapKit/include/MapKit/MKActionRowItemViewDelegate.h new file mode 100644 index 000000000..98e7479f8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKActionRowItemViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKActionRowItemViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKActivityItemSocialSource.h b/src/frameworks/MapKit/include/MapKit/MKActivityItemSocialSource.h new file mode 100644 index 000000000..a42c9fca2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKActivityItemSocialSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKActivityItemSocialSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKActivityItemSource.h b/src/frameworks/MapKit/include/MapKit/MKActivityItemSource.h new file mode 100644 index 000000000..ce12a48ac --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKActivityItemSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKActivityItemSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAllRouteETAsManager.h b/src/frameworks/MapKit/include/MapKit/MKAllRouteETAsManager.h new file mode 100644 index 000000000..3b48ab520 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAllRouteETAsManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAllRouteETAsManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotation.h b/src/frameworks/MapKit/include/MapKit/MKAnnotation.h new file mode 100644 index 000000000..dc09bd864 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationContainerView.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationContainerView.h new file mode 100644 index 000000000..a7d3bc633 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationContainerView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationContainerView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationContainerViewDelegate.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationContainerViewDelegate.h new file mode 100644 index 000000000..dc1124d74 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationContainerViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationContainerViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationManager.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationManager.h new file mode 100644 index 000000000..98e45c65c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationManagerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationManagerDelegate.h new file mode 100644 index 000000000..d1063d89c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationManagerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationManagerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationMarkerContainer.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationMarkerContainer.h new file mode 100644 index 000000000..ec915d058 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationMarkerContainer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationMarkerContainer + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationModel.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationModel.h new file mode 100644 index 000000000..a27714c09 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationModel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationModel + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationPrivate.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationPrivate.h new file mode 100644 index 000000000..8a0b12f6f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationPrivate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationPrivate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationRepresentation.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationRepresentation.h new file mode 100644 index 000000000..ddab7869d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationRepresentation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationRepresentation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationSelector.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationSelector.h new file mode 100644 index 000000000..ee7a9601d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationSelector.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationSelector + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationView.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationView.h new file mode 100644 index 000000000..c849e3106 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAnnotationViewInternal.h b/src/frameworks/MapKit/include/MapKit/MKAnnotationViewInternal.h new file mode 100644 index 000000000..7a61a30de --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAnnotationViewInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAnnotationViewInternal : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAppImageManager.h b/src/frameworks/MapKit/include/MapKit/MKAppImageManager.h new file mode 100644 index 000000000..5ee8b9b6b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAppImageManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAppImageManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKArtworkDataSourceCache.h b/src/frameworks/MapKit/include/MapKit/MKArtworkDataSourceCache.h new file mode 100644 index 000000000..011ea0b42 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKArtworkDataSourceCache.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKArtworkDataSourceCache : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKArtworkImageSource.h b/src/frameworks/MapKit/include/MapKit/MKArtworkImageSource.h new file mode 100644 index 000000000..877ad34ea --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKArtworkImageSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKArtworkImageSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKArtworkImageView.h b/src/frameworks/MapKit/include/MapKit/MKArtworkImageView.h new file mode 100644 index 000000000..770e14103 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKArtworkImageView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKArtworkImageView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAttributeLabelModel.h b/src/frameworks/MapKit/include/MapKit/MKAttributeLabelModel.h new file mode 100644 index 000000000..17edc7993 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAttributeLabelModel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAttributeLabelModel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAttributeUtils.h b/src/frameworks/MapKit/include/MapKit/MKAttributeUtils.h new file mode 100644 index 000000000..792e083b4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAttributeUtils.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAttributeUtils : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAttributedStringBlendingConfiguration.h b/src/frameworks/MapKit/include/MapKit/MKAttributedStringBlendingConfiguration.h new file mode 100644 index 000000000..af5eeeb4d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAttributedStringBlendingConfiguration.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAttributedStringBlendingConfiguration : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAttributedStringVibrancySplitter.h b/src/frameworks/MapKit/include/MapKit/MKAttributedStringVibrancySplitter.h new file mode 100644 index 000000000..fe9c1f336 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAttributedStringVibrancySplitter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAttributedStringVibrancySplitter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAttributionLabel.h b/src/frameworks/MapKit/include/MapKit/MKAttributionLabel.h new file mode 100644 index 000000000..a3bd93a9c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAttributionLabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAttributionLabel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAutocompleteAnalyticsProvider.h b/src/frameworks/MapKit/include/MapKit/MKAutocompleteAnalyticsProvider.h new file mode 100644 index 000000000..0ab345c02 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAutocompleteAnalyticsProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAutocompleteAnalyticsProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKAutocompleteAnalyticsState.h b/src/frameworks/MapKit/include/MapKit/MKAutocompleteAnalyticsState.h new file mode 100644 index 000000000..0d7e2d5e2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKAutocompleteAnalyticsState.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKAutocompleteAnalyticsState : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKBlurBackedControlProxy.h b/src/frameworks/MapKit/include/MapKit/MKBlurBackedControlProxy.h new file mode 100644 index 000000000..c012fd289 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKBlurBackedControlProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKBlurBackedControlProxy : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKBlurBackedControlView.h b/src/frameworks/MapKit/include/MapKit/MKBlurBackedControlView.h new file mode 100644 index 000000000..cd472a765 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKBlurBackedControlView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKBlurBackedControlView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKBlurBackingLayer.h b/src/frameworks/MapKit/include/MapKit/MKBlurBackingLayer.h new file mode 100644 index 000000000..658f1b711 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKBlurBackingLayer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKBlurBackingLayer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKBlurBackingView.h b/src/frameworks/MapKit/include/MapKit/MKBlurBackingView.h new file mode 100644 index 000000000..676b12976 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKBlurBackingView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKBlurBackingView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKButtonWithTargetArgument.h b/src/frameworks/MapKit/include/MapKit/MKButtonWithTargetArgument.h new file mode 100644 index 000000000..716cacf24 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKButtonWithTargetArgument.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKButtonWithTargetArgument : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCALayerCompletionDelegate.h b/src/frameworks/MapKit/include/MapKit/MKCALayerCompletionDelegate.h new file mode 100644 index 000000000..59f057935 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCALayerCompletionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCALayerCompletionDelegate : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCalloutLayer.h b/src/frameworks/MapKit/include/MapKit/MKCalloutLayer.h new file mode 100644 index 000000000..b2edff510 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCalloutLayer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCalloutLayer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCalloutShadowView.h b/src/frameworks/MapKit/include/MapKit/MKCalloutShadowView.h new file mode 100644 index 000000000..093175922 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCalloutShadowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCalloutShadowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCalloutView.h b/src/frameworks/MapKit/include/MapKit/MKCalloutView.h new file mode 100644 index 000000000..1967d9042 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCalloutView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCalloutView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCircle.h b/src/frameworks/MapKit/include/MapKit/MKCircle.h new file mode 100644 index 000000000..5d53f9829 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCircle.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCircle : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCircleRenderer.h b/src/frameworks/MapKit/include/MapKit/MKCircleRenderer.h new file mode 100644 index 000000000..2434dc415 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCircleRenderer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCircleRenderer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKClusterAnnotation.h b/src/frameworks/MapKit/include/MapKit/MKClusterAnnotation.h new file mode 100644 index 000000000..dbf09d317 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKClusterAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKClusterAnnotation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCompassLayer.h b/src/frameworks/MapKit/include/MapKit/MKCompassLayer.h new file mode 100644 index 000000000..7ea65a657 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCompassLayer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCompassLayer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCompassView.h b/src/frameworks/MapKit/include/MapKit/MKCompassView.h new file mode 100644 index 000000000..3a3bf5f0c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCompassView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCompassView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCoreLocationProvider.h b/src/frameworks/MapKit/include/MapKit/MKCoreLocationProvider.h new file mode 100644 index 000000000..255089aee --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCoreLocationProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCoreLocationProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCustomFeatureAnnotation.h b/src/frameworks/MapKit/include/MapKit/MKCustomFeatureAnnotation.h new file mode 100644 index 000000000..618b5c1c1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCustomFeatureAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCustomFeatureAnnotation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKCustomSeparatorTableViewCell.h b/src/frameworks/MapKit/include/MapKit/MKCustomSeparatorTableViewCell.h new file mode 100644 index 000000000..7d684dd13 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKCustomSeparatorTableViewCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKCustomSeparatorTableViewCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKDirections.h b/src/frameworks/MapKit/include/MapKit/MKDirections.h new file mode 100644 index 000000000..bce593e59 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKDirections.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKDirections : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKDirectionsRequest.h b/src/frameworks/MapKit/include/MapKit/MKDirectionsRequest.h new file mode 100644 index 000000000..0b3690c95 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKDirectionsRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKDirectionsRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKDirectionsResponse.h b/src/frameworks/MapKit/include/MapKit/MKDirectionsResponse.h new file mode 100644 index 000000000..873c0fc7f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKDirectionsResponse.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKDirectionsResponse : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKDistanceFormatter.h b/src/frameworks/MapKit/include/MapKit/MKDistanceFormatter.h new file mode 100644 index 000000000..eb92e601f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKDistanceFormatter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKDistanceFormatter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKDynamicTransitUIContainer.h b/src/frameworks/MapKit/include/MapKit/MKDynamicTransitUIContainer.h new file mode 100644 index 000000000..e70e41f57 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKDynamicTransitUIContainer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKDynamicTransitUIContainer + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKETAProvider.h b/src/frameworks/MapKit/include/MapKit/MKETAProvider.h new file mode 100644 index 000000000..67dd60550 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKETAProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKETAProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKETAProviderDelegate.h b/src/frameworks/MapKit/include/MapKit/MKETAProviderDelegate.h new file mode 100644 index 000000000..e47c088eb --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKETAProviderDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKETAProviderDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKETAProviderObserver.h b/src/frameworks/MapKit/include/MapKit/MKETAProviderObserver.h new file mode 100644 index 000000000..dec23b0c5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKETAProviderObserver.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKETAProviderObserver + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKETAResponse.h b/src/frameworks/MapKit/include/MapKit/MKETAResponse.h new file mode 100644 index 000000000..a8f011083 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKETAResponse.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKETAResponse : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKEmptyTextAttachment.h b/src/frameworks/MapKit/include/MapKit/MKEmptyTextAttachment.h new file mode 100644 index 000000000..dc285dac2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKEmptyTextAttachment.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKEmptyTextAttachment : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKEmptyTextAttachmentCell.h b/src/frameworks/MapKit/include/MapKit/MKEmptyTextAttachmentCell.h new file mode 100644 index 000000000..fc937b350 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKEmptyTextAttachmentCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKEmptyTextAttachmentCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKGeodesicPolyline.h b/src/frameworks/MapKit/include/MapKit/MKGeodesicPolyline.h new file mode 100644 index 000000000..58b9386bb --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKGeodesicPolyline.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKGeodesicPolyline : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKIconManager.h b/src/frameworks/MapKit/include/MapKit/MKIconManager.h new file mode 100644 index 000000000..d144a2c18 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKIconManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKIconManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKImageAttachmentCell.h b/src/frameworks/MapKit/include/MapKit/MKImageAttachmentCell.h new file mode 100644 index 000000000..40d66274a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKImageAttachmentCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKImageAttachmentCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKImageTextAttachment.h b/src/frameworks/MapKit/include/MapKit/MKImageTextAttachment.h new file mode 100644 index 000000000..50b244bd2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKImageTextAttachment.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKImageTextAttachment : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKImageView.h b/src/frameworks/MapKit/include/MapKit/MKImageView.h new file mode 100644 index 000000000..625342bca --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKImageView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKImageView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKInactiveTransitLine.h b/src/frameworks/MapKit/include/MapKit/MKInactiveTransitLine.h new file mode 100644 index 000000000..ab79b74ba --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKInactiveTransitLine.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKInactiveTransitLine + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKIncidentTextView.h b/src/frameworks/MapKit/include/MapKit/MKIncidentTextView.h new file mode 100644 index 000000000..97e6ebedc --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKIncidentTextView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKIncidentTextView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKInfoCardDetailView.h b/src/frameworks/MapKit/include/MapKit/MKInfoCardDetailView.h new file mode 100644 index 000000000..64d83eb02 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKInfoCardDetailView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKInfoCardDetailView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKInfoCardReportAProblemController.h b/src/frameworks/MapKit/include/MapKit/MKInfoCardReportAProblemController.h new file mode 100644 index 000000000..8dfb16fb8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKInfoCardReportAProblemController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKInfoCardReportAProblemController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKInfoCardTheme.h b/src/frameworks/MapKit/include/MapKit/MKInfoCardTheme.h new file mode 100644 index 000000000..1bf640a8f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKInfoCardTheme.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKInfoCardTheme + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKInfoCardThemeListener.h b/src/frameworks/MapKit/include/MapKit/MKInfoCardThemeListener.h new file mode 100644 index 000000000..270ff49c5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKInfoCardThemeListener.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKInfoCardThemeListener + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKInfoCardThemeManager.h b/src/frameworks/MapKit/include/MapKit/MKInfoCardThemeManager.h new file mode 100644 index 000000000..afe76334b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKInfoCardThemeManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKInfoCardThemeManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKJunction.h b/src/frameworks/MapKit/include/MapKit/MKJunction.h new file mode 100644 index 000000000..22bbac8d8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKJunction.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKJunction : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLabelMarker.h b/src/frameworks/MapKit/include/MapKit/MKLabelMarker.h new file mode 100644 index 000000000..b88755cad --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLabelMarker.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLabelMarker : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLayer.h b/src/frameworks/MapKit/include/MapKit/MKLayer.h new file mode 100644 index 000000000..186b70e61 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLayer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLayer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLayoutCardViewController.h b/src/frameworks/MapKit/include/MapKit/MKLayoutCardViewController.h new file mode 100644 index 000000000..7af9f3775 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLayoutCardViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLayoutCardViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLinkTextField.h b/src/frameworks/MapKit/include/MapKit/MKLinkTextField.h new file mode 100644 index 000000000..cf1520daf --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLinkTextField.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLinkTextField : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocalSearch.h b/src/frameworks/MapKit/include/MapKit/MKLocalSearch.h new file mode 100644 index 000000000..ca856703d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocalSearch.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocalSearch : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocalSearchCompleter.h b/src/frameworks/MapKit/include/MapKit/MKLocalSearchCompleter.h new file mode 100644 index 000000000..f56638ca3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocalSearchCompleter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocalSearchCompleter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocalSearchCompletion.h b/src/frameworks/MapKit/include/MapKit/MKLocalSearchCompletion.h new file mode 100644 index 000000000..fdff1c4e9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocalSearchCompletion.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocalSearchCompletion : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocalSearchKeypressMetrics.h b/src/frameworks/MapKit/include/MapKit/MKLocalSearchKeypressMetrics.h new file mode 100644 index 000000000..08dc1292e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocalSearchKeypressMetrics.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocalSearchKeypressMetrics : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocalSearchRequest.h b/src/frameworks/MapKit/include/MapKit/MKLocalSearchRequest.h new file mode 100644 index 000000000..4f390a63e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocalSearchRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocalSearchRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocalSearchResponse.h b/src/frameworks/MapKit/include/MapKit/MKLocalSearchResponse.h new file mode 100644 index 000000000..434417a30 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocalSearchResponse.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocalSearchResponse : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocatableObject.h b/src/frameworks/MapKit/include/MapKit/MKLocatableObject.h new file mode 100644 index 000000000..eefcaa134 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocatableObject.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocatableObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocationManager.h b/src/frameworks/MapKit/include/MapKit/MKLocationManager.h new file mode 100644 index 000000000..cc4c2dd34 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocationManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocationManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocationManagerObserver.h b/src/frameworks/MapKit/include/MapKit/MKLocationManagerObserver.h new file mode 100644 index 000000000..be0f97d16 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocationManagerObserver.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocationManagerObserver + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocationManagerOperation.h b/src/frameworks/MapKit/include/MapKit/MKLocationManagerOperation.h new file mode 100644 index 000000000..cbd77ae48 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocationManagerOperation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocationManagerOperation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocationManagerSingleUpdater.h b/src/frameworks/MapKit/include/MapKit/MKLocationManagerSingleUpdater.h new file mode 100644 index 000000000..8c93e990e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocationManagerSingleUpdater.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocationManagerSingleUpdater : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocationProvider.h b/src/frameworks/MapKit/include/MapKit/MKLocationProvider.h new file mode 100644 index 000000000..2ff26b935 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocationProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocationProvider + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKLocationProviderDelegate.h b/src/frameworks/MapKit/include/MapKit/MKLocationProviderDelegate.h new file mode 100644 index 000000000..b1df8217b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKLocationProviderDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKLocationProviderDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapAttribution.h b/src/frameworks/MapKit/include/MapKit/MKMapAttribution.h new file mode 100644 index 000000000..1a38e415d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapAttribution.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapAttribution : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapAttributionImage.h b/src/frameworks/MapKit/include/MapKit/MKMapAttributionImage.h new file mode 100644 index 000000000..30b18c761 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapAttributionImage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapAttributionImage : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapCamera.h b/src/frameworks/MapKit/include/MapKit/MKMapCamera.h new file mode 100644 index 000000000..3916118a0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapCamera.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapCamera : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapGestureController.h b/src/frameworks/MapKit/include/MapKit/MKMapGestureController.h new file mode 100644 index 000000000..6a5854630 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapGestureController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapGestureController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapGestureControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKMapGestureControllerDelegate.h new file mode 100644 index 000000000..b8fedc43f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapGestureControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapGestureControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItem.h b/src/frameworks/MapKit/include/MapKit/MKMapItem.h new file mode 100644 index 000000000..fa3843a3f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemIdentifier.h b/src/frameworks/MapKit/include/MapKit/MKMapItemIdentifier.h new file mode 100644 index 000000000..b61314554 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemIdentifier.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemIdentifier : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemMetadata.h b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadata.h new file mode 100644 index 000000000..d4b74b19c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadata.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemMetadata : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataImageRequest.h b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataImageRequest.h new file mode 100644 index 000000000..bd2df2829 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataImageRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemMetadataImageRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataRequest.h b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataRequest.h new file mode 100644 index 000000000..54a157f5d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemMetadataRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataRequester.h b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataRequester.h new file mode 100644 index 000000000..f41e897fc --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemMetadataRequester.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemMetadataRequester : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemPhoto.h b/src/frameworks/MapKit/include/MapKit/MKMapItemPhoto.h new file mode 100644 index 000000000..1c053ec3a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemPhoto.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemPhoto : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapItemProviderRatingSnippet.h b/src/frameworks/MapKit/include/MapKit/MKMapItemProviderRatingSnippet.h new file mode 100644 index 000000000..09f390f92 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapItemProviderRatingSnippet.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapItemProviderRatingSnippet + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapService.h b/src/frameworks/MapKit/include/MapKit/MKMapService.h new file mode 100644 index 000000000..d9eb80139 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapService.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapService : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceCategoriesTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceCategoriesTicket.h new file mode 100644 index 000000000..cb71f7124 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceCategoriesTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceCategoriesTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceProblemReportTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceProblemReportTicket.h new file mode 100644 index 000000000..dec46c705 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceProblemReportTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceProblemReportTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceSearchFieldPlaceholderTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceSearchFieldPlaceholderTicket.h new file mode 100644 index 000000000..c953116a8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceSearchFieldPlaceholderTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceSearchFieldPlaceholderTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceSearchTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceSearchTicket.h new file mode 100644 index 000000000..66b144794 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceSearchTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceSearchTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceTicket.h new file mode 100644 index 000000000..4d9640cf6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceTransitLineTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceTransitLineTicket.h new file mode 100644 index 000000000..32ba459aa --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceTransitLineTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceTransitLineTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapServiceWalletMerchantTicket.h b/src/frameworks/MapKit/include/MapKit/MKMapServiceWalletMerchantTicket.h new file mode 100644 index 000000000..621688969 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapServiceWalletMerchantTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapServiceWalletMerchantTicket + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapSnapshot.h b/src/frameworks/MapKit/include/MapKit/MKMapSnapshot.h new file mode 100644 index 000000000..84c0aea9d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapSnapshot.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapSnapshot : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapSnapshotCreator.h b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotCreator.h new file mode 100644 index 000000000..4f44876c2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotCreator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapSnapshotCreator : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapSnapshotFeatureAnnotation.h b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotFeatureAnnotation.h new file mode 100644 index 000000000..2163fef5c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotFeatureAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapSnapshotFeatureAnnotation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapSnapshotOptions.h b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotOptions.h new file mode 100644 index 000000000..080c41002 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotOptions.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapSnapshotOptions : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapSnapshotter.h b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotter.h new file mode 100644 index 000000000..affe3e761 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapSnapshotter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapSnapshotter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMapView.h b/src/frameworks/MapKit/include/MapKit/MKMapView.h new file mode 100644 index 000000000..b346c5772 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMapView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMapView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKModernUserLocationView.h b/src/frameworks/MapKit/include/MapKit/MKModernUserLocationView.h new file mode 100644 index 000000000..901900845 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKModernUserLocationView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKModernUserLocationView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKModuleViewControllerProtocol.h b/src/frameworks/MapKit/include/MapKit/MKModuleViewControllerProtocol.h new file mode 100644 index 000000000..0627f6c8d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKModuleViewControllerProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKModuleViewControllerProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMouseOverActionView.h b/src/frameworks/MapKit/include/MapKit/MKMouseOverActionView.h new file mode 100644 index 000000000..629b6f722 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMouseOverActionView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMouseOverActionView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelRecognizer.h b/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelRecognizer.h new file mode 100644 index 000000000..a33e4ec9c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMouseOverLabelRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelRecognizerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelRecognizerDelegate.h new file mode 100644 index 000000000..433b0270c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelRecognizerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMouseOverLabelRecognizerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelTarget.h b/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelTarget.h new file mode 100644 index 000000000..409f15700 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMouseOverLabelTarget.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMouseOverLabelTarget + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMultiLineLabelContainer.h b/src/frameworks/MapKit/include/MapKit/MKMultiLineLabelContainer.h new file mode 100644 index 000000000..af1dbc8ae --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMultiLineLabelContainer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMultiLineLabelContainer + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMultiPartAttributedString.h b/src/frameworks/MapKit/include/MapKit/MKMultiPartAttributedString.h new file mode 100644 index 000000000..ac9c1bcd3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMultiPartAttributedString.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMultiPartAttributedString : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMultiPartLabel.h b/src/frameworks/MapKit/include/MapKit/MKMultiPartLabel.h new file mode 100644 index 000000000..ce5d4d123 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMultiPartLabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMultiPartLabel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMultiPoint.h b/src/frameworks/MapKit/include/MapKit/MKMultiPoint.h new file mode 100644 index 000000000..c74fb3471 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMultiPoint.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMultiPoint : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKMultilineText.h b/src/frameworks/MapKit/include/MapKit/MKMultilineText.h new file mode 100644 index 000000000..65a0937c3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKMultilineText.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKMultilineText + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOfflineModeViewController.h b/src/frameworks/MapKit/include/MapKit/MKOfflineModeViewController.h new file mode 100644 index 000000000..d032a48fa --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOfflineModeViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOfflineModeViewController + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOrientable.h b/src/frameworks/MapKit/include/MapKit/MKOrientable.h new file mode 100644 index 000000000..42fffbb56 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOrientable.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOrientable + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOrientationContext.h b/src/frameworks/MapKit/include/MapKit/MKOrientationContext.h new file mode 100644 index 000000000..1bc9e0b9a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOrientationContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOrientationContext : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOverlay.h b/src/frameworks/MapKit/include/MapKit/MKOverlay.h new file mode 100644 index 000000000..a4dbf909f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOverlay.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOverlay + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOverlayContainerView.h b/src/frameworks/MapKit/include/MapKit/MKOverlayContainerView.h new file mode 100644 index 000000000..039b230e4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOverlayContainerView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOverlayContainerView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOverlayContainerViewDelegate.h b/src/frameworks/MapKit/include/MapKit/MKOverlayContainerViewDelegate.h new file mode 100644 index 000000000..e23a974d7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOverlayContainerViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOverlayContainerViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOverlayPathRenderer.h b/src/frameworks/MapKit/include/MapKit/MKOverlayPathRenderer.h new file mode 100644 index 000000000..3bb491fcf --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOverlayPathRenderer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOverlayPathRenderer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKOverlayRenderer.h b/src/frameworks/MapKit/include/MapKit/MKOverlayRenderer.h new file mode 100644 index 000000000..31285b683 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKOverlayRenderer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKOverlayRenderer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPhotoBigAttributionView.h b/src/frameworks/MapKit/include/MapKit/MKPhotoBigAttributionView.h new file mode 100644 index 000000000..60b69c4e2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPhotoBigAttributionView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPhotoBigAttributionView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPhotoSmallAttributionView.h b/src/frameworks/MapKit/include/MapKit/MKPhotoSmallAttributionView.h new file mode 100644 index 000000000..b5ad4a518 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPhotoSmallAttributionView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPhotoSmallAttributionView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPinAnnotationView.h b/src/frameworks/MapKit/include/MapKit/MKPinAnnotationView.h new file mode 100644 index 000000000..3b7c1865c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPinAnnotationView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPinAnnotationView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceActionManager.h b/src/frameworks/MapKit/include/MapKit/MKPlaceActionManager.h new file mode 100644 index 000000000..b936ebca5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceActionManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceActionManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceActionManagerProtocol.h b/src/frameworks/MapKit/include/MapKit/MKPlaceActionManagerProtocol.h new file mode 100644 index 000000000..ed60b2037 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceActionManagerProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceActionManagerProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKPlaceActivityProvider.h new file mode 100644 index 000000000..9170c108c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCell.h b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCell.h new file mode 100644 index 000000000..6ed3906f5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceAttributionCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellButton.h b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellButton.h new file mode 100644 index 000000000..1fd906b73 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceAttributionCellButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellButtonDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellButtonDelegate.h new file mode 100644 index 000000000..367930d02 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellButtonDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceAttributionCellButtonDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellDelegate.h new file mode 100644 index 000000000..a2969bab4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionCellDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceAttributionCellDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionLabel.h b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionLabel.h new file mode 100644 index 000000000..a7fcae527 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionLabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceAttributionLabel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionViewController.h new file mode 100644 index 000000000..324bb0c37 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceAttributionViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceAttributionViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceBusinessInfoViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceBusinessInfoViewController.h new file mode 100644 index 000000000..2eb0adb63 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceBusinessInfoViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceBusinessInfoViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionControllerDelegate.h new file mode 100644 index 000000000..4f988b001 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardActionControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionItem.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionItem.h new file mode 100644 index 000000000..333b0beea --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardActionItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionSectionView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionSectionView.h new file mode 100644 index 000000000..3dfd5f777 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionSectionView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardActionSectionView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionSectionViewDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionSectionViewDelegate.h new file mode 100644 index 000000000..ce34f9a93 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionSectionViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardActionSectionViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionsRowViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionsRowViewController.h new file mode 100644 index 000000000..3ff1a4b8c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionsRowViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardActionsRowViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionsViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionsViewController.h new file mode 100644 index 000000000..d8f8d9aad --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardActionsViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardActionsViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardEncyclopedicControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardEncyclopedicControllerDelegate.h new file mode 100644 index 000000000..769255b20 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardEncyclopedicControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardEncyclopedicControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardFooterActionsViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardFooterActionsViewController.h new file mode 100644 index 000000000..3da5bd3b5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardFooterActionsViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardFooterActionsViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardHeaderViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardHeaderViewController.h new file mode 100644 index 000000000..396dccdaf --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardHeaderViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardHeaderViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardHeaderViewControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardHeaderViewControllerDelegate.h new file mode 100644 index 000000000..aa7152a3f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardHeaderViewControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardHeaderViewControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardPhotosControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardPhotosControllerDelegate.h new file mode 100644 index 000000000..f70947a58 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardPhotosControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardPhotosControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCardReviewsControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCardReviewsControllerDelegate.h new file mode 100644 index 000000000..740ee18c2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCardReviewsControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCardReviewsControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceCompleteHoursView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceCompleteHoursView.h new file mode 100644 index 000000000..2c5255c13 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceCompleteHoursView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceCompleteHoursView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicFactoidView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicFactoidView.h new file mode 100644 index 000000000..bb17c1bd2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicFactoidView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceEncyclopedicFactoidView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicRowView.h new file mode 100644 index 000000000..7282085aa --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceEncyclopedicRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicRowViewItem.h b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicRowViewItem.h new file mode 100644 index 000000000..f0a730583 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicRowViewItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceEncyclopedicRowViewItem + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicTextItem.h b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicTextItem.h new file mode 100644 index 000000000..8eceb174c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicTextItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceEncyclopedicTextItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicViewController.h new file mode 100644 index 000000000..c7c8506aa --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceEncyclopedicViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceEncyclopedicViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButton.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButton.h new file mode 100644 index 000000000..7582dedf7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHeaderButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButtonsViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButtonsViewController.h new file mode 100644 index 000000000..1d50f84a6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButtonsViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHeaderButtonsViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButtonsViewControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButtonsViewControllerDelegate.h new file mode 100644 index 000000000..7bd6a8776 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHeaderButtonsViewControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHeaderButtonsViewControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHoursDayRow.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursDayRow.h new file mode 100644 index 000000000..c19c72c9c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursDayRow.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHoursDayRow : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHoursView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursView.h new file mode 100644 index 000000000..f87cf6d45 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHoursView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHoursViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursViewController.h new file mode 100644 index 000000000..07182d273 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHoursViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceHoursViewHelper.h b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursViewHelper.h new file mode 100644 index 000000000..038a0ca4f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceHoursViewHelper.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceHoursViewHelper : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoBusinessMessageRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoBusinessMessageRowView.h new file mode 100644 index 000000000..83ae8f7f6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoBusinessMessageRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoBusinessMessageRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoContactRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoContactRowView.h new file mode 100644 index 000000000..6a8f4b6b7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoContactRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoContactRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoEmailRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoEmailRowView.h new file mode 100644 index 000000000..98113f8fb --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoEmailRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoEmailRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoPhoneNumberView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoPhoneNumberView.h new file mode 100644 index 000000000..86ffcbe19 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoPhoneNumberView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoPhoneNumberView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoPostalAddressRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoPostalAddressRowView.h new file mode 100644 index 000000000..e7dd21496 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoPostalAddressRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoPostalAddressRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoRow.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoRow.h new file mode 100644 index 000000000..196c1a94c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoRow.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoRow : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoURLRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoURLRowView.h new file mode 100644 index 000000000..391cb701e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoURLRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoURLRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInfoViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoViewController.h new file mode 100644 index 000000000..b1c436311 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInfoViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInfoViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceInlineMapViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceInlineMapViewController.h new file mode 100644 index 000000000..dfe21a019 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceInlineMapViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceInlineMapViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceLocVCardActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKPlaceLocVCardActivityProvider.h new file mode 100644 index 000000000..7eaa72682 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceLocVCardActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceLocVCardActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceMapItemActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKPlaceMapItemActivityProvider.h new file mode 100644 index 000000000..a399927fa --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceMapItemActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceMapItemActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceMessageHoursViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceMessageHoursViewController.h new file mode 100644 index 000000000..4acea2eda --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceMessageHoursViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceMessageHoursViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlacePhotosViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlacePhotosViewController.h new file mode 100644 index 000000000..1e4cd83a4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlacePhotosViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlacePhotosViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlacePoisInlineMapViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlacePoisInlineMapViewController.h new file mode 100644 index 000000000..0cbb0d9f2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlacePoisInlineMapViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlacePoisInlineMapViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceReservationRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceReservationRowView.h new file mode 100644 index 000000000..9452cf7a7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceReservationRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceReservationRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceReservationViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceReservationViewController.h new file mode 100644 index 000000000..1b41e8807 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceReservationViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceReservationViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceReviewAvatarGenerator.h b/src/frameworks/MapKit/include/MapKit/MKPlaceReviewAvatarGenerator.h new file mode 100644 index 000000000..adbd2d756 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceReviewAvatarGenerator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceReviewAvatarGenerator : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceReviewsViewCell.h b/src/frameworks/MapKit/include/MapKit/MKPlaceReviewsViewCell.h new file mode 100644 index 000000000..4642e2b6b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceReviewsViewCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceReviewsViewCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceReviewsViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceReviewsViewController.h new file mode 100644 index 000000000..31b97f6d9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceReviewsViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceReviewsViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceSectionHeaderView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionHeaderView.h new file mode 100644 index 000000000..25d85ea0b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionHeaderView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceSectionHeaderView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceSectionItemView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionItemView.h new file mode 100644 index 000000000..4fd7bb38a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionItemView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceSectionItemView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceSectionRowView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionRowView.h new file mode 100644 index 000000000..3d4a11f08 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionRowView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceSectionRowView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceSectionView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionView.h new file mode 100644 index 000000000..4abdfd731 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceSectionView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceSectionViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionViewController.h new file mode 100644 index 000000000..24520ceb1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceSectionViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceSectionViewDelegate.h b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionViewDelegate.h new file mode 100644 index 000000000..c4feda02d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceSectionViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceSectionViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursView.h b/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursView.h new file mode 100644 index 000000000..f7a153198 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceServiceHoursView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursViewController.h new file mode 100644 index 000000000..eded8e1ee --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceServiceHoursViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursViewControllerProtocol.h b/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursViewControllerProtocol.h new file mode 100644 index 000000000..4537df5f9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceServiceHoursViewControllerProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceServiceHoursViewControllerProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceTextActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKPlaceTextActivityProvider.h new file mode 100644 index 000000000..80176f161 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceTextActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceTextActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceTextBlockCell.h b/src/frameworks/MapKit/include/MapKit/MKPlaceTextBlockCell.h new file mode 100644 index 000000000..59c887a2f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceTextBlockCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceTextBlockCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceTextCell.h b/src/frameworks/MapKit/include/MapKit/MKPlaceTextCell.h new file mode 100644 index 000000000..577b5ee76 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceTextCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceTextCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceTopBarViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceTopBarViewController.h new file mode 100644 index 000000000..f5b24ce56 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceTopBarViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceTopBarViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceURLActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKPlaceURLActivityProvider.h new file mode 100644 index 000000000..377a46391 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceURLActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceURLActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlaceUnfinishedViewController.h b/src/frameworks/MapKit/include/MapKit/MKPlaceUnfinishedViewController.h new file mode 100644 index 000000000..f8c65cc45 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlaceUnfinishedViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlaceUnfinishedViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlacemark.h b/src/frameworks/MapKit/include/MapKit/MKPlacemark.h new file mode 100644 index 000000000..5104adc95 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlacemark.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlacemark : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPlatterView.h b/src/frameworks/MapKit/include/MapKit/MKPlatterView.h new file mode 100644 index 000000000..f0fadf029 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPlatterView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPlatterView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPointAnnotation.h b/src/frameworks/MapKit/include/MapKit/MKPointAnnotation.h new file mode 100644 index 000000000..1075fa95c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPointAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPointAnnotation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPolygon.h b/src/frameworks/MapKit/include/MapKit/MKPolygon.h new file mode 100644 index 000000000..3e57da451 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPolygon.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPolygon : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPolygonRenderer.h b/src/frameworks/MapKit/include/MapKit/MKPolygonRenderer.h new file mode 100644 index 000000000..3716f1597 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPolygonRenderer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPolygonRenderer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPolyline.h b/src/frameworks/MapKit/include/MapKit/MKPolyline.h new file mode 100644 index 000000000..c5b07906e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPolyline.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPolyline : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKPolylineRenderer.h b/src/frameworks/MapKit/include/MapKit/MKPolylineRenderer.h new file mode 100644 index 000000000..33d41ff5f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKPolylineRenderer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKPolylineRenderer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKQuadTrie.h b/src/frameworks/MapKit/include/MapKit/MKQuadTrie.h new file mode 100644 index 000000000..7ba4b0bf3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKQuadTrie.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKQuadTrie : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKQuickRouteConfigurableView.h b/src/frameworks/MapKit/include/MapKit/MKQuickRouteConfigurableView.h new file mode 100644 index 000000000..034561b11 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKQuickRouteConfigurableView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKQuickRouteConfigurableView + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKQuickRouteManagerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKQuickRouteManagerDelegate.h new file mode 100644 index 000000000..69a6c983d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKQuickRouteManagerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKQuickRouteManagerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKQuickRouteTransportTypeFinding.h b/src/frameworks/MapKit/include/MapKit/MKQuickRouteTransportTypeFinding.h new file mode 100644 index 000000000..2913032ee --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKQuickRouteTransportTypeFinding.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKQuickRouteTransportTypeFinding + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKResizableImage.h b/src/frameworks/MapKit/include/MapKit/MKResizableImage.h new file mode 100644 index 000000000..d48928321 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKResizableImage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKResizableImage : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKResizedArtworkDataSourceCache.h b/src/frameworks/MapKit/include/MapKit/MKResizedArtworkDataSourceCache.h new file mode 100644 index 000000000..6188ef6b0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKResizedArtworkDataSourceCache.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKResizedArtworkDataSourceCache : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRotationFilter.h b/src/frameworks/MapKit/include/MapKit/MKRotationFilter.h new file mode 100644 index 000000000..92410cae5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRotationFilter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRotationFilter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRotationFilterDelegate.h b/src/frameworks/MapKit/include/MapKit/MKRotationFilterDelegate.h new file mode 100644 index 000000000..957a811d6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRotationFilterDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRotationFilterDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRoute.h b/src/frameworks/MapKit/include/MapKit/MKRoute.h new file mode 100644 index 000000000..00fb0950a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRoute.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRoute : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRouteActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKRouteActivityProvider.h new file mode 100644 index 000000000..b6d7a57ac --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRouteActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRouteActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRoutePolyline.h b/src/frameworks/MapKit/include/MapKit/MKRoutePolyline.h new file mode 100644 index 000000000..2ca318ba8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRoutePolyline.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRoutePolyline : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRouteStep.h b/src/frameworks/MapKit/include/MapKit/MKRouteStep.h new file mode 100644 index 000000000..c8223d56b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRouteStep.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRouteStep : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRouteStepPolyline.h b/src/frameworks/MapKit/include/MapKit/MKRouteStepPolyline.h new file mode 100644 index 000000000..d2eb00fe9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRouteStepPolyline.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRouteStepPolyline : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRouteTextActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKRouteTextActivityProvider.h new file mode 100644 index 000000000..a2898041f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRouteTextActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRouteTextActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKRouteURLActivityProvider.h b/src/frameworks/MapKit/include/MapKit/MKRouteURLActivityProvider.h new file mode 100644 index 000000000..bfe843c6f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKRouteURLActivityProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKRouteURLActivityProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKScaleView.h b/src/frameworks/MapKit/include/MapKit/MKScaleView.h new file mode 100644 index 000000000..65afbd53d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKScaleView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKScaleView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSearchCompletion.h b/src/frameworks/MapKit/include/MapKit/MKSearchCompletion.h new file mode 100644 index 000000000..99a28d605 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSearchCompletion.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSearchCompletion : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSeparator.h b/src/frameworks/MapKit/include/MapKit/MKSeparator.h new file mode 100644 index 000000000..237547469 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSeparator.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSeparator : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKServerFormattedString.h b/src/frameworks/MapKit/include/MapKit/MKServerFormattedString.h new file mode 100644 index 000000000..323f32128 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKServerFormattedString.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKServerFormattedString : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKServerFormattedStringParameters.h b/src/frameworks/MapKit/include/MapKit/MKServerFormattedStringParameters.h new file mode 100644 index 000000000..e70c4c608 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKServerFormattedStringParameters.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKServerFormattedStringParameters : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKServiceHoursRow.h b/src/frameworks/MapKit/include/MapKit/MKServiceHoursRow.h new file mode 100644 index 000000000..0713048d1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKServiceHoursRow.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKServiceHoursRow : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKShape.h b/src/frameworks/MapKit/include/MapKit/MKShape.h new file mode 100644 index 000000000..7788f0699 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKShape.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKShape : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSharingController.h b/src/frameworks/MapKit/include/MapKit/MKSharingController.h new file mode 100644 index 000000000..7b9416fb5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSharingController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSharingController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSizedTransitArtwork.h b/src/frameworks/MapKit/include/MapKit/MKSizedTransitArtwork.h new file mode 100644 index 000000000..599bcee1b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSizedTransitArtwork.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSizedTransitArtwork : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSmallCalloutView.h b/src/frameworks/MapKit/include/MapKit/MKSmallCalloutView.h new file mode 100644 index 000000000..db7bddc6f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSmallCalloutView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSmallCalloutView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSpatialCollider.h b/src/frameworks/MapKit/include/MapKit/MKSpatialCollider.h new file mode 100644 index 000000000..c20c41c27 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSpatialCollider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSpatialCollider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStackingViewController.h b/src/frameworks/MapKit/include/MapKit/MKStackingViewController.h new file mode 100644 index 000000000..b4d8172d9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStackingViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStackingViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerDelegate.h new file mode 100644 index 000000000..31d64a167 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStackingViewControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerFixedHeightAware.h b/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerFixedHeightAware.h new file mode 100644 index 000000000..f0bbb2c37 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerFixedHeightAware.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStackingViewControllerFixedHeightAware + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerSizableView.h b/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerSizableView.h new file mode 100644 index 000000000..b09adde69 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStackingViewControllerSizableView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStackingViewControllerSizableView + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStandardCalloutView.h b/src/frameworks/MapKit/include/MapKit/MKStandardCalloutView.h new file mode 100644 index 000000000..56e6de567 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStandardCalloutView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStandardCalloutView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStarRatingAndLabelView.h b/src/frameworks/MapKit/include/MapKit/MKStarRatingAndLabelView.h new file mode 100644 index 000000000..11f487ecc --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStarRatingAndLabelView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStarRatingAndLabelView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKStarRatingView.h b/src/frameworks/MapKit/include/MapKit/MKStarRatingView.h new file mode 100644 index 000000000..157540e6e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKStarRatingView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKStarRatingView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKSystemController.h b/src/frameworks/MapKit/include/MapKit/MKSystemController.h new file mode 100644 index 000000000..0a86d2d2d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKSystemController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKSystemController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTableViewCell.h b/src/frameworks/MapKit/include/MapKit/MKTableViewCell.h new file mode 100644 index 000000000..347c66db1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTableViewCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTableViewCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKThemeMultiPartLabel.h b/src/frameworks/MapKit/include/MapKit/MKThemeMultiPartLabel.h new file mode 100644 index 000000000..739ac86d9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKThemeMultiPartLabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKThemeMultiPartLabel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKThreadContext.h b/src/frameworks/MapKit/include/MapKit/MKThreadContext.h new file mode 100644 index 000000000..5d5b22742 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKThreadContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKThreadContext : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKThrottledGate.h b/src/frameworks/MapKit/include/MapKit/MKThrottledGate.h new file mode 100644 index 000000000..af767c4a0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKThrottledGate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKThrottledGate : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTileOverlay.h b/src/frameworks/MapKit/include/MapKit/MKTileOverlay.h new file mode 100644 index 000000000..df20b0754 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTileOverlay.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTileOverlay : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTileOverlayRenderer.h b/src/frameworks/MapKit/include/MapKit/MKTileOverlayRenderer.h new file mode 100644 index 000000000..41116160e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTileOverlayRenderer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTileOverlayRenderer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTileOverlayRequester.h b/src/frameworks/MapKit/include/MapKit/MKTileOverlayRequester.h new file mode 100644 index 000000000..afc1c962f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTileOverlayRequester.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTileOverlayRequester : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTileOverlayRequesterOp.h b/src/frameworks/MapKit/include/MapKit/MKTileOverlayRequesterOp.h new file mode 100644 index 000000000..77e0e7f36 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTileOverlayRequesterOp.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTileOverlayRequesterOp : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTileOverlayTile.h b/src/frameworks/MapKit/include/MapKit/MKTileOverlayTile.h new file mode 100644 index 000000000..e6de1942e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTileOverlayTile.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTileOverlayTile : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKToVKOverlayAdaptor.h b/src/frameworks/MapKit/include/MapKit/MKToVKOverlayAdaptor.h new file mode 100644 index 000000000..54563e33b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKToVKOverlayAdaptor.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKToVKOverlayAdaptor : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTrafficSupport.h b/src/frameworks/MapKit/include/MapKit/MKTrafficSupport.h new file mode 100644 index 000000000..f5ae7bed6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTrafficSupport.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTrafficSupport : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTrailingAlignedButton.h b/src/frameworks/MapKit/include/MapKit/MKTrailingAlignedButton.h new file mode 100644 index 000000000..0c5ff7287 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTrailingAlignedButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTrailingAlignedButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTrailingAlignedButtonCell.h b/src/frameworks/MapKit/include/MapKit/MKTrailingAlignedButtonCell.h new file mode 100644 index 000000000..f7268d048 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTrailingAlignedButtonCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTrailingAlignedButtonCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitArtwork.h b/src/frameworks/MapKit/include/MapKit/MKTransitArtwork.h new file mode 100644 index 000000000..76d3bc7a2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitArtwork.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitArtwork : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitArtworkManager.h b/src/frameworks/MapKit/include/MapKit/MKTransitArtworkManager.h new file mode 100644 index 000000000..e8dcba56d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitArtworkManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitArtworkManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitAttributionSummaryCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitAttributionSummaryCell.h new file mode 100644 index 000000000..c94e095b8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitAttributionSummaryCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitAttributionSummaryCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitAttributionViewController.h b/src/frameworks/MapKit/include/MapKit/MKTransitAttributionViewController.h new file mode 100644 index 000000000..236a6e034 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitAttributionViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitAttributionViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitAttributionViewControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKTransitAttributionViewControllerDelegate.h new file mode 100644 index 000000000..a77839846 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitAttributionViewControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitAttributionViewControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDepartureServiceGapFormatter.h b/src/frameworks/MapKit/include/MapKit/MKTransitDepartureServiceGapFormatter.h new file mode 100644 index 000000000..a8008606b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDepartureServiceGapFormatter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDepartureServiceGapFormatter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDepartureServiceGapFormatterResult.h b/src/frameworks/MapKit/include/MapKit/MKTransitDepartureServiceGapFormatterResult.h new file mode 100644 index 000000000..75aaeb672 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDepartureServiceGapFormatterResult.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDepartureServiceGapFormatterResult : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesCell.h new file mode 100644 index 000000000..c39de7c89 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDeparturesCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesCellDelegate.h b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesCellDelegate.h new file mode 100644 index 000000000..5346a983d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesCellDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDeparturesCellDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesSectionController.h b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesSectionController.h new file mode 100644 index 000000000..4bd0409e4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesSectionController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDeparturesSectionController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesSectionHeaderView.h b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesSectionHeaderView.h new file mode 100644 index 000000000..389a04646 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesSectionHeaderView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDeparturesSectionHeaderView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesViewController.h b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesViewController.h new file mode 100644 index 000000000..cff7ab5ce --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDeparturesViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDeparturesViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitDepaturesViewControllerDelegate.h b/src/frameworks/MapKit/include/MapKit/MKTransitDepaturesViewControllerDelegate.h new file mode 100644 index 000000000..150da59f8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitDepaturesViewControllerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitDepaturesViewControllerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitIcon.h b/src/frameworks/MapKit/include/MapKit/MKTransitIcon.h new file mode 100644 index 000000000..bf4cacbf4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitIcon.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitIcon : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitInactiveLinesSectionController.h b/src/frameworks/MapKit/include/MapKit/MKTransitInactiveLinesSectionController.h new file mode 100644 index 000000000..c10ee0847 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitInactiveLinesSectionController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitInactiveLinesSectionController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitIncidentDetailCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentDetailCell.h new file mode 100644 index 000000000..7b2b6e371 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentDetailCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitIncidentDetailCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitIncidentStringProvider.h b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentStringProvider.h new file mode 100644 index 000000000..a78786f4e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentStringProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitIncidentStringProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitIncidentSummaryCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentSummaryCell.h new file mode 100644 index 000000000..badfbb4f3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentSummaryCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitIncidentSummaryCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitIncidentsViewController.h b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentsViewController.h new file mode 100644 index 000000000..08a563660 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitIncidentsViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitIncidentsViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitInfoLabelView.h b/src/frameworks/MapKit/include/MapKit/MKTransitInfoLabelView.h new file mode 100644 index 000000000..398d70f5d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitInfoLabelView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitInfoLabelView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitItemController.h b/src/frameworks/MapKit/include/MapKit/MKTransitItemController.h new file mode 100644 index 000000000..c338ba602 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitItemController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitItemController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitItemIncidentCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitItemIncidentCell.h new file mode 100644 index 000000000..7cd0088fd --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitItemIncidentCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitItemIncidentCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitItemIncidentsController.h b/src/frameworks/MapKit/include/MapKit/MKTransitItemIncidentsController.h new file mode 100644 index 000000000..cf741a942 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitItemIncidentsController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitItemIncidentsController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitLineIncidentsViewController.h b/src/frameworks/MapKit/include/MapKit/MKTransitLineIncidentsViewController.h new file mode 100644 index 000000000..ea2041c86 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitLineIncidentsViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitLineIncidentsViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitLineItemViewController.h b/src/frameworks/MapKit/include/MapKit/MKTransitLineItemViewController.h new file mode 100644 index 000000000..b11f14927 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitLineItemViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitLineItemViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitLineMarker.h b/src/frameworks/MapKit/include/MapKit/MKTransitLineMarker.h new file mode 100644 index 000000000..b252abe94 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitLineMarker.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitLineMarker + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitLoadingTableViewCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitLoadingTableViewCell.h new file mode 100644 index 000000000..83c972e43 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitLoadingTableViewCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitLoadingTableViewCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitMessageCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitMessageCell.h new file mode 100644 index 000000000..bdf5bca41 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitMessageCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitMessageCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitSectionController.h b/src/frameworks/MapKit/include/MapKit/MKTransitSectionController.h new file mode 100644 index 000000000..7b6c8634b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitSectionController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitSectionController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitSectionPagingFilter.h b/src/frameworks/MapKit/include/MapKit/MKTransitSectionPagingFilter.h new file mode 100644 index 000000000..e00e407de --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitSectionPagingFilter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitSectionPagingFilter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitShield.h b/src/frameworks/MapKit/include/MapKit/MKTransitShield.h new file mode 100644 index 000000000..8a00ecd18 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitShield.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitShield : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKTransitSystemCell.h b/src/frameworks/MapKit/include/MapKit/MKTransitSystemCell.h new file mode 100644 index 000000000..98bd30fe5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKTransitSystemCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKTransitSystemCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKUILabelNoAutoFontSmoothingBackground.h b/src/frameworks/MapKit/include/MapKit/MKUILabelNoAutoFontSmoothingBackground.h new file mode 100644 index 000000000..ac68c7f42 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKUILabelNoAutoFontSmoothingBackground.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKUILabelNoAutoFontSmoothingBackground : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKURLBuilder.h b/src/frameworks/MapKit/include/MapKit/MKURLBuilder.h new file mode 100644 index 000000000..96ad796e0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKURLBuilder.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKURLBuilder : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKURLHandler.h b/src/frameworks/MapKit/include/MapKit/MKURLHandler.h new file mode 100644 index 000000000..1f4a36f16 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKURLHandler.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKURLHandler : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKURLParser.h b/src/frameworks/MapKit/include/MapKit/MKURLParser.h new file mode 100644 index 000000000..a07368593 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKURLParser.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKURLParser : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKURLSerializer.h b/src/frameworks/MapKit/include/MapKit/MKURLSerializer.h new file mode 100644 index 000000000..8f583989b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKURLSerializer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKURLSerializer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKUserLocation.h b/src/frameworks/MapKit/include/MapKit/MKUserLocation.h new file mode 100644 index 000000000..3e4e0903a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKUserLocation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKUserLocation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKUserLocationAnnotation.h b/src/frameworks/MapKit/include/MapKit/MKUserLocationAnnotation.h new file mode 100644 index 000000000..a220076fe --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKUserLocationAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKUserLocationAnnotation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKUserLocationAnnotationViewProxy.h b/src/frameworks/MapKit/include/MapKit/MKUserLocationAnnotationViewProxy.h new file mode 100644 index 000000000..a7324f6c1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKUserLocationAnnotationViewProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKUserLocationAnnotationViewProxy : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKUserLocationInternal.h b/src/frameworks/MapKit/include/MapKit/MKUserLocationInternal.h new file mode 100644 index 000000000..66689a6d9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKUserLocationInternal.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKUserLocationInternal : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKUserLocationView.h b/src/frameworks/MapKit/include/MapKit/MKUserLocationView.h new file mode 100644 index 000000000..f123796ba --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKUserLocationView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKUserLocationView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKVibrancyAwareLabelView.h b/src/frameworks/MapKit/include/MapKit/MKVibrancyAwareLabelView.h new file mode 100644 index 000000000..7bd705953 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKVibrancyAwareLabelView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKVibrancyAwareLabelView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKViewWithHairline.h b/src/frameworks/MapKit/include/MapKit/MKViewWithHairline.h new file mode 100644 index 000000000..fa0bf6f6a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKViewWithHairline.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKViewWithHairline : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKWalletMerchantLookupRequest.h b/src/frameworks/MapKit/include/MapKit/MKWalletMerchantLookupRequest.h new file mode 100644 index 000000000..2ccf91c97 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKWalletMerchantLookupRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKWalletMerchantLookupRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKWalletMerchantResponse.h b/src/frameworks/MapKit/include/MapKit/MKWalletMerchantResponse.h new file mode 100644 index 000000000..e7266cd86 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKWalletMerchantResponse.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKWalletMerchantResponse : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKWalletMerchantStylingInfo.h b/src/frameworks/MapKit/include/MapKit/MKWalletMerchantStylingInfo.h new file mode 100644 index 000000000..45198e23e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKWalletMerchantStylingInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKWalletMerchantStylingInfo : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKWalletRAPReport.h b/src/frameworks/MapKit/include/MapKit/MKWalletRAPReport.h new file mode 100644 index 000000000..7af396a8f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKWalletRAPReport.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKWalletRAPReport : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MKZoomSegmentedControl.h b/src/frameworks/MapKit/include/MapKit/MKZoomSegmentedControl.h new file mode 100644 index 000000000..6ce04fb48 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MKZoomSegmentedControl.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MKZoomSegmentedControl : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/MapKit.h b/src/frameworks/MapKit/include/MapKit/MapKit.h new file mode 100644 index 000000000..f65216a9e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/MapKit.h @@ -0,0 +1,674 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU 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 _MapKit_H_ +#define _MapKit_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 +#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* GEOGetMKIconManagerLog(void); +void* ImageForShieldDataSourceTypeShouldBeFlipped(void); +void* MKAddressDictionaryFromCLPlacemark(void); +void* MKAddressDictionaryFromContactsDictionary(void); +void* MKAddressDictionaryFromPostalAddress(void); +void* MKAddressStringForAddressDictionary(void); +void* MKAnnotationViewIntersectionArea(void); +void* MKAnnotationViewsIntersectionArea(void); +void* MKApplicationLayoutDirectionIsRightToLeft(void); +void* MKArrowAppendArrowheadToPathAndReturnMetrics(void); +void* MKArrowAppendArrowheadToPathAndReturnMetricsWithStemAdjustment(void); +void* MKArrowAppendCurveToPath(void); +void* MKArrowAppendCurveToPathWithOptions(void); +void* MKArrowAppendCurveToPathWithOptionsAndRadius(void); +void* MKArrowAppendExitRoadLeftToPathInRect(void); +void* MKArrowAppendExitRoadRightToPathInRect(void); +void* MKArrowAppendFinalSegmentToPath(void); +void* MKArrowAppendInitialSegmentToPath(void); +void* MKArrowAppendLeftTurnToPathInRect(void); +void* MKArrowAppendMergeLeftToPathInRect(void); +void* MKArrowAppendMergeRightToPathInRect(void); +void* MKArrowAppendRightAngleCurveToPath(void); +void* MKArrowAppendRightTurnToPathInRect(void); +void* MKArrowAppendSegmentToPath(void); +void* MKArrowAppendStraightArrowToPathInRect(void); +void* MKArrowAppendUTurnCurveToPath(void); +void* MKArrowAppendUTurnToPathInRect(void); +void* MKArrowCreateBezierPathsForArrivalWithSize(void); +void* MKArrowCreateBezierPathsForArrivalWithSizeAndReturnCenter(void); +void* MKArrowCreateBezierPathsForEitherProceedToRouteOrArrivalWithSizeAndReturnCenter(void); +void* MKArrowCreateBezierPathsForProceedToRouteWithSize(void); +void* MKArrowCreateBezierPathsForProceedToRouteWithSizeAndReturnCenter(void); +void* MKBearingFromCoordinateToCoordinate(void); +void* MKCalculateDistance(void); +void* MKCenterWithLayerPosition(void); +void* MKClosestMapPointInLineSegmentFromMapPoint(void); +void* MKCompassPointFromLocationDirection(void); +void* MKCoordinateForMapPoint(void); +void* MKCoordinateForTilePoint(void); +void* MKCoordinateRegionForMapRect(void); +void* MKCoordinateRegionMakeWithDistance(void); +void* MKCoordinateRegionMakeWithZoomLevel(void); +void* MKCoordinatesForRegion(void); +void* MKCurrentTransitConnectionFailureDiagnosis(void); +void* MKDefaultCoordinateRegion(void); +void* MKDefaultGuidanceManeuverMetrics(void); +void* MKDirectionBetween(void); +void* MKGetCenterForIntegralFrame(void); +void* MKGetMKDefaultLog(void); +void* MKGetNextOrientation(void); +void* MKGuidanceManeuverArrowMetricsApplyScale(void); +void* MKGuidanceManeuverArrowMetricsEqualToArrowMetrics(void); +void* MKIntegerHash(void); +void* MKIntegralAnchorAdustedCenterForViewInView(void); +void* MKIntegralCenterForLayer(void); +void* MKIntegralCenterForLayerWithScale(void); +void* MKIntegralCenterForView(void); +void* MKIntegralCenterForViewWithScale(void); +void* MKIntegralPoint(void); +void* MKIsHostedInSiri(void); +void* MKKeyForTransitArtwork(void); +void* MKLayerPositionWithAnchoredPosition(void); +void* MKLayerPositionWithCenter(void); +void* MKLayerTreeDescription(void); +void* MKLineIntersectsOriginCircle(void); +void* MKLocalSearchMetricsStatusForError(void); +void* MKLocalSearchMetricsStatusToKeypressStatus(void); +void* MKLocalizedAbbreviationForCompassPoint(void); +void* MKLocalizedStringForUnknownLocation(void); +void* MKLongHash(void); +void* MKMapItemIdentifierFromGEOPBTransitLine(void); +void* MKMapItemIdentifierFromGEOTransitLine(void); +void* MKMapItemIdentifiersArrayFromGEOMapItemIdentifiersArray(void); +void* MKMapItemIdentifiersArrayToGEOMapItemIdentifiersArray(void); +void* MKMapItemIdentifiersToGEOMapItemIdentifier(void); +void* MKMapPointForCoordinate(void); +void* MKMapPointsPerMeterAtLatitude(void); +void* MKMapRectBoundingMapPoints(void); +void* MKMapRectContainsPoint(void); +void* MKMapRectContainsRect(void); +void* MKMapRectContainsRectWrappingMeridian(void); +void* MKMapRectDivide(void); +void* MKMapRectForCoordinateRegion(void); +void* MKMapRectInset(void); +void* MKMapRectIntersection(void); +void* MKMapRectIntersectsMapRectWrappingMeridian(void); +void* MKMapRectIntersectsRect(void); +void* MKMapRectMakeWithRadialDistance(void); +void* MKMapRectOffset(void); +void* MKMapRectRemainder(void); +void* MKMapRectSpans180thMeridian(void); +void* MKMapRectUnion(void); +void* MKMappedABCNDictionary(void); +void* MKMetersBetweenMapPoints(void); +void* MKMetersPerMapPointAtLatitude(void); +void* MKNormalizedPointForLayer(void); +void* MKPrepareMultiLineLabelContainerForWidth(void); +void* MKRectToLineSegments(void); +void* MKRectWithPoints(void); +void* MKRoadWidthAtZoomScale(void); +void* MKTilePointForCoordinate(void); +void* MKTmpUserTrip(void); +void* MKTransitArtworkImageConstrainedToWidth(void); +void* MKTransitIncidentIcon(void); +void* MKTripRecording(void); +void* MKUnNormalizedPointForLayer(void); +void* MKZoomScaleForZoomLevelF(void); +void* _MKIsRunningInExtension(void); +void* _MKLinkedOnOrAfterReleaseSet(void); +void* _MKMapRectThatFits(void); +void* _MKPlaceCardButtonsAreFullWidth(void); +void* _MKPlaceCardFormattedStringForTimeInterval(void); +void* _MKPlaceCardUseSmallerFont(void); +void* _MKRAPIsAvailable(void); +void* _MKSiriLanguageIsRTLFn(void); +void* _MKTransitIncidentImage(void); +void* _Z10_splitNodeP14MKQuadTrieNodeP10MKQuadTrie(void); +void* _Z16MKMapRectLEQSize9MKMapRect9MKMapSize(void); +void* _Z16_depthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E(void); +void* _Z17__depthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E(void); +void* _Z18MKQuadTrieNodeFreeP14MKQuadTrieNode(void); +void* _Z18MKQuadTrieNodeMake9MKMapRect(void); +void* _Z18_breadthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E(void); +void* _Z21_insertionNodeForItemPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode(void); +void* _Z24MKStringFromQuadTrieNodeP14MKQuadTrieNode(void); +void* _Z7_insertPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNodeP10MKQuadTrie(void); +void* _Z7_removePU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode(void); +void* _Z9_containsPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode(void); +void* _ZN3URS22shareSectionsForRoutesERKNSt3__16vectorIU8__strongP16GEOComposedRouteNS0_9allocatorIS4_EEEE(void); +void* _notifyCenterOffsetChanged(void); +void* _performOnMainThreadIfPossible(void); +void* _scaleForMapRect(void); +void* mt_log_mapkit_usemap(void); +void* mt_log_maps_bookmarked(void); +void* mt_log_maps_gesture(void); +void* mt_log_maps_mode_switch(void); +void* mt_log_maps_mode_time(void); +void* mt_log_maps_opened(void); +void* mt_log_maps_printed(void); +void* mt_log_maps_reportproblem(void); +void* mt_log_maps_shared_to(void); +void* mt_log_maps_usemapkitmap(void); +void* mt_log_usedirections(void); +void* mt_signature_for_map_type(void); + +#endif diff --git a/src/frameworks/MapKit/include/MapKit/NSAccessibilityButton.h b/src/frameworks/MapKit/include/MapKit/NSAccessibilityButton.h new file mode 100644 index 000000000..8f358baa2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSAccessibilityButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSAccessibilityButton + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSAccessibilityElement.h b/src/frameworks/MapKit/include/MapKit/NSAccessibilityElement.h new file mode 100644 index 000000000..76ead4a5d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSAccessibilityElement.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSAccessibilityElement + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSControlTextEditingDelegate.h b/src/frameworks/MapKit/include/MapKit/NSControlTextEditingDelegate.h new file mode 100644 index 000000000..7abafe883 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSControlTextEditingDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSControlTextEditingDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSGestureRecognizerDelegate.h b/src/frameworks/MapKit/include/MapKit/NSGestureRecognizerDelegate.h new file mode 100644 index 000000000..49c6fbf57 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSGestureRecognizerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSGestureRecognizerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSSharingServiceDelegate.h b/src/frameworks/MapKit/include/MapKit/NSSharingServiceDelegate.h new file mode 100644 index 000000000..cd712320a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSSharingServiceDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSSharingServiceDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSSharingServicePickerDelegate.h b/src/frameworks/MapKit/include/MapKit/NSSharingServicePickerDelegate.h new file mode 100644 index 000000000..1ad73fb4b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSSharingServicePickerDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSSharingServicePickerDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSTableViewDataSource.h b/src/frameworks/MapKit/include/MapKit/NSTableViewDataSource.h new file mode 100644 index 000000000..546318415 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSTableViewDataSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSTableViewDataSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSTableViewDelegate.h b/src/frameworks/MapKit/include/MapKit/NSTableViewDelegate.h new file mode 100644 index 000000000..b471a5bb7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSTableViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSTableViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSURLSessionDataDelegate.h b/src/frameworks/MapKit/include/MapKit/NSURLSessionDataDelegate.h new file mode 100644 index 000000000..95aebacc5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSURLSessionDataDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLSessionDataDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSURLSessionDelegate.h b/src/frameworks/MapKit/include/MapKit/NSURLSessionDelegate.h new file mode 100644 index 000000000..a77fc6a83 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSURLSessionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLSessionDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NSURLSessionTaskDelegate.h b/src/frameworks/MapKit/include/MapKit/NSURLSessionTaskDelegate.h new file mode 100644 index 000000000..f068a7311 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NSURLSessionTaskDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLSessionTaskDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NVAttributeAttachmentCell.h b/src/frameworks/MapKit/include/MapKit/NVAttributeAttachmentCell.h new file mode 100644 index 000000000..6b750c57b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NVAttributeAttachmentCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NVAttributeAttachmentCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/NVMapScaleSegment.h b/src/frameworks/MapKit/include/MapKit/NVMapScaleSegment.h new file mode 100644 index 000000000..8f8e70dd7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/NVMapScaleSegment.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NVMapScaleSegment : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKAnnotation.h b/src/frameworks/MapKit/include/MapKit/VKAnnotation.h new file mode 100644 index 000000000..9d1fc9208 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKAnnotation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKCustomFeatureAnnotation.h b/src/frameworks/MapKit/include/MapKit/VKCustomFeatureAnnotation.h new file mode 100644 index 000000000..c4da36915 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKCustomFeatureAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKCustomFeatureAnnotation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKCustomFeatureDataSource.h b/src/frameworks/MapKit/include/MapKit/VKCustomFeatureDataSource.h new file mode 100644 index 000000000..b9541c064 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKCustomFeatureDataSource.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKCustomFeatureDataSource + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKMapViewDelegate.h b/src/frameworks/MapKit/include/MapKit/VKMapViewDelegate.h new file mode 100644 index 000000000..a1f67237f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKMapViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKMapViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKPuckAnimatorTarget.h b/src/frameworks/MapKit/include/MapKit/VKPuckAnimatorTarget.h new file mode 100644 index 000000000..1731416d7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKPuckAnimatorTarget.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKPuckAnimatorTarget + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKRouteMatchedAnnotationPresentation.h b/src/frameworks/MapKit/include/MapKit/VKRouteMatchedAnnotationPresentation.h new file mode 100644 index 000000000..26d77c9df --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKRouteMatchedAnnotationPresentation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKRouteMatchedAnnotationPresentation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/VKTrackableAnnotationPresentation.h b/src/frameworks/MapKit/include/MapKit/VKTrackableAnnotationPresentation.h new file mode 100644 index 000000000..17b4887f3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/VKTrackableAnnotationPresentation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 VKTrackableAnnotationPresentation + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_GEOTransitLineMarker.h b/src/frameworks/MapKit/include/MapKit/_GEOTransitLineMarker.h new file mode 100644 index 000000000..49c79b286 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_GEOTransitLineMarker.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _GEOTransitLineMarker : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKAnimationStackViewDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKAnimationStackViewDelegate.h new file mode 100644 index 000000000..ee2ecae35 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKAnimationStackViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKAnimationStackViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKAnnotationDragGestureRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKAnnotationDragGestureRecognizer.h new file mode 100644 index 000000000..42713e1e5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKAnnotationDragGestureRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKAnnotationDragGestureRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKAnnotationViewAnchor.h b/src/frameworks/MapKit/include/MapKit/_MKAnnotationViewAnchor.h new file mode 100644 index 000000000..6985b4ebe --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKAnnotationViewAnchor.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKAnnotationViewAnchor : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKAnnotationViewCustomFeatureAnnotation.h b/src/frameworks/MapKit/include/MapKit/_MKAnnotationViewCustomFeatureAnnotation.h new file mode 100644 index 000000000..73e314fd1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKAnnotationViewCustomFeatureAnnotation.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKAnnotationViewCustomFeatureAnnotation : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKAppImageManagerContainer.h b/src/frameworks/MapKit/include/MapKit/_MKAppImageManagerContainer.h new file mode 100644 index 000000000..350d00572 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKAppImageManagerContainer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKAppImageManagerContainer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKBalloonCalloutView.h b/src/frameworks/MapKit/include/MapKit/_MKBalloonCalloutView.h new file mode 100644 index 000000000..15552dbac --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKBalloonCalloutView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKBalloonCalloutView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKBalloonCalloutViewConfiguring.h b/src/frameworks/MapKit/include/MapKit/_MKBalloonCalloutViewConfiguring.h new file mode 100644 index 000000000..7e851221d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKBalloonCalloutViewConfiguring.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKBalloonCalloutViewConfiguring + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKBalloonContainerView.h b/src/frameworks/MapKit/include/MapKit/_MKBalloonContainerView.h new file mode 100644 index 000000000..b52a2c2db --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKBalloonContainerView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKBalloonContainerView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKBalloonLabelMarkerView.h b/src/frameworks/MapKit/include/MapKit/_MKBalloonLabelMarkerView.h new file mode 100644 index 000000000..f2b3d56b8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKBalloonLabelMarkerView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKBalloonLabelMarkerView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCalloutAccessoryView.h b/src/frameworks/MapKit/include/MapKit/_MKCalloutAccessoryView.h new file mode 100644 index 000000000..ea1aee89b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCalloutAccessoryView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCalloutAccessoryView + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCalloutAccessoryWrapperView.h b/src/frameworks/MapKit/include/MapKit/_MKCalloutAccessoryWrapperView.h new file mode 100644 index 000000000..cdd4d7853 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCalloutAccessoryWrapperView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCalloutAccessoryWrapperView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCalloutContentView.h b/src/frameworks/MapKit/include/MapKit/_MKCalloutContentView.h new file mode 100644 index 000000000..ec6eb8fb7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCalloutContentView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCalloutContentView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCalloutDetailWrapperView.h b/src/frameworks/MapKit/include/MapKit/_MKCalloutDetailWrapperView.h new file mode 100644 index 000000000..9a304a1ad --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCalloutDetailWrapperView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCalloutDetailWrapperView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCalloutLayer.h b/src/frameworks/MapKit/include/MapKit/_MKCalloutLayer.h new file mode 100644 index 000000000..f0bbc7bb4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCalloutLayer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCalloutLayer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCategoriesTicket.h b/src/frameworks/MapKit/include/MapKit/_MKCategoriesTicket.h new file mode 100644 index 000000000..2f06f0172 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCategoriesTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCategoriesTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKClickableTableView.h b/src/frameworks/MapKit/include/MapKit/_MKClickableTableView.h new file mode 100644 index 000000000..e240202be --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKClickableTableView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKClickableTableView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKClickableTableViewController.h b/src/frameworks/MapKit/include/MapKit/_MKClickableTableViewController.h new file mode 100644 index 000000000..2625bd598 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKClickableTableViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKClickableTableViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKClickableTableViewDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKClickableTableViewDelegate.h new file mode 100644 index 000000000..aff7602bf --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKClickableTableViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKClickableTableViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKConditionalPanGestureRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKConditionalPanGestureRecognizer.h new file mode 100644 index 000000000..31df193f6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKConditionalPanGestureRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKConditionalPanGestureRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKContactPlaceItem.h b/src/frameworks/MapKit/include/MapKit/_MKContactPlaceItem.h new file mode 100644 index 000000000..bd837677e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKContactPlaceItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKContactPlaceItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKCustomFeatureStore.h b/src/frameworks/MapKit/include/MapKit/_MKCustomFeatureStore.h new file mode 100644 index 000000000..2aa87d06a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKCustomFeatureStore.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKCustomFeatureStore : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKDataHeaderModel.h b/src/frameworks/MapKit/include/MapKit/_MKDataHeaderModel.h new file mode 100644 index 000000000..5c36028af --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKDataHeaderModel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKDataHeaderModel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKDirectionalArrowRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKDirectionalArrowRecognizer.h new file mode 100644 index 000000000..0165554a5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKDirectionalArrowRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKDirectionalArrowRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKDirectionalPanGestureRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKDirectionalPanGestureRecognizer.h new file mode 100644 index 000000000..8e0a766fe --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKDirectionalPanGestureRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKDirectionalPanGestureRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKDistanceDetailProvider.h b/src/frameworks/MapKit/include/MapKit/_MKDistanceDetailProvider.h new file mode 100644 index 000000000..ebb7ab295 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKDistanceDetailProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKDistanceDetailProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKEnvironmentLabel.h b/src/frameworks/MapKit/include/MapKit/_MKEnvironmentLabel.h new file mode 100644 index 000000000..76e6bd4ad --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKEnvironmentLabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKEnvironmentLabel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKFakeNil.h b/src/frameworks/MapKit/include/MapKit/_MKFakeNil.h new file mode 100644 index 000000000..0f9296d35 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKFakeNil.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKFakeNil : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKGemUserLocationView.h b/src/frameworks/MapKit/include/MapKit/_MKGemUserLocationView.h new file mode 100644 index 000000000..f0c851d55 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKGemUserLocationView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKGemUserLocationView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKIconDiskCache.h b/src/frameworks/MapKit/include/MapKit/_MKIconDiskCache.h new file mode 100644 index 000000000..2d564626d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKIconDiskCache.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKIconDiskCache : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKInfoCardAnalyticsDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKInfoCardAnalyticsDelegate.h new file mode 100644 index 000000000..ecfbc7b00 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKInfoCardAnalyticsDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKInfoCardAnalyticsDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKInfoCardChildViewControllerAnalyticsDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKInfoCardChildViewControllerAnalyticsDelegate.h new file mode 100644 index 000000000..5cdfc2473 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKInfoCardChildViewControllerAnalyticsDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKInfoCardChildViewControllerAnalyticsDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKInfoCardController.h b/src/frameworks/MapKit/include/MapKit/_MKInfoCardController.h new file mode 100644 index 000000000..4f6044696 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKInfoCardController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKInfoCardController + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKJunctionElement.h b/src/frameworks/MapKit/include/MapKit/_MKJunctionElement.h new file mode 100644 index 000000000..6ad4e6e85 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKJunctionElement.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKJunctionElement : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKKVOProxy.h b/src/frameworks/MapKit/include/MapKit/_MKKVOProxy.h new file mode 100644 index 000000000..ba6232bce --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKKVOProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKKVOProxy : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKKVOProxyDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKKVOProxyDelegate.h new file mode 100644 index 000000000..88590e2a4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKKVOProxyDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKKVOProxyDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLabelMarkerItem.h b/src/frameworks/MapKit/include/MapKit/_MKLabelMarkerItem.h new file mode 100644 index 000000000..265c71f6a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLabelMarkerItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLabelMarkerItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLabelMarkerView.h b/src/frameworks/MapKit/include/MapKit/_MKLabelMarkerView.h new file mode 100644 index 000000000..c3323bb5c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLabelMarkerView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLabelMarkerView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLeadingAlignedButton.h b/src/frameworks/MapKit/include/MapKit/_MKLeadingAlignedButton.h new file mode 100644 index 000000000..054d89f94 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLeadingAlignedButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLeadingAlignedButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLeadingAlignedButtonCell.h b/src/frameworks/MapKit/include/MapKit/_MKLeadingAlignedButtonCell.h new file mode 100644 index 000000000..2d879d946 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLeadingAlignedButtonCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLeadingAlignedButtonCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLineHeaderModel.h b/src/frameworks/MapKit/include/MapKit/_MKLineHeaderModel.h new file mode 100644 index 000000000..e349f992b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLineHeaderModel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLineHeaderModel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLocalSearchExternalTransitLookupParameters.h b/src/frameworks/MapKit/include/MapKit/_MKLocalSearchExternalTransitLookupParameters.h new file mode 100644 index 000000000..6083e7f6b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLocalSearchExternalTransitLookupParameters.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLocalSearchExternalTransitLookupParameters : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLocalSearchMerchantParameters.h b/src/frameworks/MapKit/include/MapKit/_MKLocalSearchMerchantParameters.h new file mode 100644 index 000000000..fa931d548 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLocalSearchMerchantParameters.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLocalSearchMerchantParameters : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLocalizedHoursBuilder.h b/src/frameworks/MapKit/include/MapKit/_MKLocalizedHoursBuilder.h new file mode 100644 index 000000000..357d56af7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLocalizedHoursBuilder.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLocalizedHoursBuilder : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKLocationShifter.h b/src/frameworks/MapKit/include/MapKit/_MKLocationShifter.h new file mode 100644 index 000000000..683ab60a3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKLocationShifter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKLocationShifter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMagnificationGestureRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKMagnificationGestureRecognizer.h new file mode 100644 index 000000000..7272fdfbe --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMagnificationGestureRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMagnificationGestureRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemAttribution.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemAttribution.h new file mode 100644 index 000000000..68debc316 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemAttribution.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemAttribution : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemPhotosAttribution.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemPhotosAttribution.h new file mode 100644 index 000000000..a7fd2df94 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemPhotosAttribution.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemPhotosAttribution : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemPlaceAttribution.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemPlaceAttribution.h new file mode 100644 index 000000000..6ad1bc020 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemPlaceAttribution.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemPlaceAttribution : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemPlaceItem.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemPlaceItem.h new file mode 100644 index 000000000..9e9eb7e62 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemPlaceItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemPlaceItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemReviewsAttribution.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemReviewsAttribution.h new file mode 100644 index 000000000..e2a5a30f7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemReviewsAttribution.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemReviewsAttribution : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemUserRatingSnippetReview.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemUserRatingSnippetReview.h new file mode 100644 index 000000000..46b9fcd64 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemUserRatingSnippetReview.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemUserRatingSnippetReview : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapItemUserRatingSnippetTip.h b/src/frameworks/MapKit/include/MapKit/_MKMapItemUserRatingSnippetTip.h new file mode 100644 index 000000000..70e727e7f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapItemUserRatingSnippetTip.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapItemUserRatingSnippetTip : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMapViewSuspendedEffectsToken.h b/src/frameworks/MapKit/include/MapKit/_MKMapViewSuspendedEffectsToken.h new file mode 100644 index 000000000..6ea1a60f9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMapViewSuspendedEffectsToken.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMapViewSuspendedEffectsToken : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMouseDownGestureRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKMouseDownGestureRecognizer.h new file mode 100644 index 000000000..3603fe4ba --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMouseDownGestureRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMouseDownGestureRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMultiPartLabelCacheKey.h b/src/frameworks/MapKit/include/MapKit/_MKMultiPartLabelCacheKey.h new file mode 100644 index 000000000..2b9d6261f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMultiPartLabelCacheKey.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMultiPartLabelCacheKey : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMultiPartLabelMetrics.h b/src/frameworks/MapKit/include/MapKit/_MKMultiPartLabelMetrics.h new file mode 100644 index 000000000..628f3b814 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMultiPartLabelMetrics.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMultiPartLabelMetrics : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKMultiPartStringComponent.h b/src/frameworks/MapKit/include/MapKit/_MKMultiPartStringComponent.h new file mode 100644 index 000000000..d3fb8b40b --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKMultiPartStringComponent.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKMultiPartStringComponent : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewDelegate.h new file mode 100644 index 000000000..d9b55bdaa --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPinAnnotationViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewImageCache.h b/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewImageCache.h new file mode 100644 index 000000000..679e9e282 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewImageCache.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPinAnnotationViewImageCache : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewImageCacheKey.h b/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewImageCacheKey.h new file mode 100644 index 000000000..2ed93e2cb --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPinAnnotationViewImageCacheKey.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPinAnnotationViewImageCacheKey : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceActionButtonController.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceActionButtonController.h new file mode 100644 index 000000000..49a54fb6c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceActionButtonController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceActionButtonController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceActionButtonControllerProtocol.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceActionButtonControllerProtocol.h new file mode 100644 index 000000000..34557878d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceActionButtonControllerProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceActionButtonControllerProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceBusinessInfoItem.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceBusinessInfoItem.h new file mode 100644 index 000000000..255668b2e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceBusinessInfoItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceBusinessInfoItem : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceBusinessInfoRow.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceBusinessInfoRow.h new file mode 100644 index 000000000..18e4811b8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceBusinessInfoRow.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceBusinessInfoRow : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceInlineMapContentView.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceInlineMapContentView.h new file mode 100644 index 000000000..1a9decad0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceInlineMapContentView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceInlineMapContentView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceInlineMapCustomFeature.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceInlineMapCustomFeature.h new file mode 100644 index 000000000..4df487bb5 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceInlineMapCustomFeature.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceInlineMapCustomFeature : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceItem.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceItem.h new file mode 100644 index 000000000..58ba74cf2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceItem.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceItem + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlacePoisInlineMapContentView.h b/src/frameworks/MapKit/include/MapKit/_MKPlacePoisInlineMapContentView.h new file mode 100644 index 000000000..2db947d13 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlacePoisInlineMapContentView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlacePoisInlineMapContentView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceReservationInfo.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceReservationInfo.h new file mode 100644 index 000000000..ee8585ede --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceReservationInfo.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceReservationInfo : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlaceViewController.h b/src/frameworks/MapKit/include/MapKit/_MKPlaceViewController.h new file mode 100644 index 000000000..4ebf001c3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlaceViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlaceViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKPlatterImageViewNoAutoLayout.h b/src/frameworks/MapKit/include/MapKit/_MKPlatterImageViewNoAutoLayout.h new file mode 100644 index 000000000..1c6ad0071 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKPlatterImageViewNoAutoLayout.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKPlatterImageViewNoAutoLayout : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKProblemReportTicket.h b/src/frameworks/MapKit/include/MapKit/_MKProblemReportTicket.h new file mode 100644 index 000000000..786d95014 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKProblemReportTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKProblemReportTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKQuickRouteManager.h b/src/frameworks/MapKit/include/MapKit/_MKQuickRouteManager.h new file mode 100644 index 000000000..aef367698 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKQuickRouteManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKQuickRouteManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKResizingLayer.h b/src/frameworks/MapKit/include/MapKit/_MKResizingLayer.h new file mode 100644 index 000000000..204cfc174 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKResizingLayer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKResizingLayer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKResultView.h b/src/frameworks/MapKit/include/MapKit/_MKResultView.h new file mode 100644 index 000000000..d6d91f171 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKResultView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKResultView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKRightImageButton.h b/src/frameworks/MapKit/include/MapKit/_MKRightImageButton.h new file mode 100644 index 000000000..41b8a426c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKRightImageButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKRightImageButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKRotationGestureRecognizer.h b/src/frameworks/MapKit/include/MapKit/_MKRotationGestureRecognizer.h new file mode 100644 index 000000000..6f40ce874 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKRotationGestureRecognizer.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKRotationGestureRecognizer : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKRouteETA.h b/src/frameworks/MapKit/include/MapKit/_MKRouteETA.h new file mode 100644 index 000000000..521762a71 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKRouteETA.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKRouteETA : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKRouteETAFetcher.h b/src/frameworks/MapKit/include/MapKit/_MKRouteETAFetcher.h new file mode 100644 index 000000000..e5b5b75d6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKRouteETAFetcher.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKRouteETAFetcher : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKScaleViewTransitionDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKScaleViewTransitionDelegate.h new file mode 100644 index 000000000..0a87c743d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKScaleViewTransitionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKScaleViewTransitionDelegate : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKSearchFieldPlaceholderTicket.h b/src/frameworks/MapKit/include/MapKit/_MKSearchFieldPlaceholderTicket.h new file mode 100644 index 000000000..f3fc22283 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKSearchFieldPlaceholderTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKSearchFieldPlaceholderTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKSearchTicket.h b/src/frameworks/MapKit/include/MapKit/_MKSearchTicket.h new file mode 100644 index 000000000..6d562854e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKSearchTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKSearchTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKSmallCalloutContainerView.h b/src/frameworks/MapKit/include/MapKit/_MKSmallCalloutContainerView.h new file mode 100644 index 000000000..83d324a99 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKSmallCalloutContainerView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKSmallCalloutContainerView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKSmallCalloutPassthroughButton.h b/src/frameworks/MapKit/include/MapKit/_MKSmallCalloutPassthroughButton.h new file mode 100644 index 000000000..2ff69c6df --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKSmallCalloutPassthroughButton.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKSmallCalloutPassthroughButton : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKSortedDepartureCollection.h b/src/frameworks/MapKit/include/MapKit/_MKSortedDepartureCollection.h new file mode 100644 index 000000000..43f86f9c2 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKSortedDepartureCollection.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKSortedDepartureCollection : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKSpatialColliderPairSet.h b/src/frameworks/MapKit/include/MapKit/_MKSpatialColliderPairSet.h new file mode 100644 index 000000000..c1eaee9b8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKSpatialColliderPairSet.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKSpatialColliderPairSet : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKStackView.h b/src/frameworks/MapKit/include/MapKit/_MKStackView.h new file mode 100644 index 000000000..c6b64c599 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKStackView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKStackView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKStackViewDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKStackViewDelegate.h new file mode 100644 index 000000000..c6d2fe0a3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKStackViewDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKStackViewDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKStackingContentView.h b/src/frameworks/MapKit/include/MapKit/_MKStackingContentView.h new file mode 100644 index 000000000..4ca68c9ed --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKStackingContentView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKStackingContentView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKStackingPlaceholderView.h b/src/frameworks/MapKit/include/MapKit/_MKStackingPlaceholderView.h new file mode 100644 index 000000000..79c1e6519 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKStackingPlaceholderView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKStackingPlaceholderView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKStackingViewControllerHeaderView.h b/src/frameworks/MapKit/include/MapKit/_MKStackingViewControllerHeaderView.h new file mode 100644 index 000000000..8eb976925 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKStackingViewControllerHeaderView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKStackingViewControllerHeaderView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTableViewController.h b/src/frameworks/MapKit/include/MapKit/_MKTableViewController.h new file mode 100644 index 000000000..4f62bd22c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTableViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTableViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTableViewControllerRootView.h b/src/frameworks/MapKit/include/MapKit/_MKTableViewControllerRootView.h new file mode 100644 index 000000000..25d4d0bb1 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTableViewControllerRootView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTableViewControllerRootView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTicket.h b/src/frameworks/MapKit/include/MapKit/_MKTicket.h new file mode 100644 index 000000000..3463b9ae8 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTokenAttributedString.h b/src/frameworks/MapKit/include/MapKit/_MKTokenAttributedString.h new file mode 100644 index 000000000..edd2b7322 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTokenAttributedString.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTokenAttributedString : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTransitConnectionCell.h b/src/frameworks/MapKit/include/MapKit/_MKTransitConnectionCell.h new file mode 100644 index 000000000..b63c6f3a9 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTransitConnectionCell.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTransitConnectionCell : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTransitConnectionCellDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKTransitConnectionCellDelegate.h new file mode 100644 index 000000000..432e42c2a --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTransitConnectionCellDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTransitConnectionCellDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTransitInactiveLine.h b/src/frameworks/MapKit/include/MapKit/_MKTransitInactiveLine.h new file mode 100644 index 000000000..3b6b5db15 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTransitInactiveLine.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTransitInactiveLine : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKTransitLineTicket.h b/src/frameworks/MapKit/include/MapKit/_MKTransitLineTicket.h new file mode 100644 index 000000000..58cbd7c6c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKTransitLineTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKTransitLineTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKUILabel.h b/src/frameworks/MapKit/include/MapKit/_MKUILabel.h new file mode 100644 index 000000000..4874e7c68 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKUILabel.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKUILabel : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKUIViewController.h b/src/frameworks/MapKit/include/MapKit/_MKUIViewController.h new file mode 100644 index 000000000..30420ec16 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKUIViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKUIViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKUIViewControllerClickableRootView.h b/src/frameworks/MapKit/include/MapKit/_MKUIViewControllerClickableRootView.h new file mode 100644 index 000000000..d89142b96 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKUIViewControllerClickableRootView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKUIViewControllerClickableRootView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKUIViewControllerRootView.h b/src/frameworks/MapKit/include/MapKit/_MKUIViewControllerRootView.h new file mode 100644 index 000000000..40fbaf266 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKUIViewControllerRootView.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKUIViewControllerRootView : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKWiFiObserver.h b/src/frameworks/MapKit/include/MapKit/_MKWiFiObserver.h new file mode 100644 index 000000000..f14fd181e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKWiFiObserver.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKWiFiObserver : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MKWiFiObserverDelegate.h b/src/frameworks/MapKit/include/MapKit/_MKWiFiObserverDelegate.h new file mode 100644 index 000000000..2a966bce0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MKWiFiObserverDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MKWiFiObserverDelegate + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXAssetStorage.h b/src/frameworks/MapKit/include/MapKit/_MXAssetStorage.h new file mode 100644 index 000000000..e04ab443e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXAssetStorage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXAssetStorage : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXBundleBlacklistEntry.h b/src/frameworks/MapKit/include/MapKit/_MXBundleBlacklistEntry.h new file mode 100644 index 000000000..fc3ee6a64 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXBundleBlacklistEntry.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXBundleBlacklistEntry : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtension.h b/src/frameworks/MapKit/include/MapKit/_MXExtension.h new file mode 100644 index 000000000..95c160049 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtension.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtension : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapFeature.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapFeature.h new file mode 100644 index 000000000..37d620d99 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapFeature.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionBaseMapFeature : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapNamedImage.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapNamedImage.h new file mode 100644 index 000000000..f8fd306d6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapNamedImage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionBaseMapNamedImage : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapRequest.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapRequest.h new file mode 100644 index 000000000..11539a4fe --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionBaseMapRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapResponse.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapResponse.h new file mode 100644 index 000000000..60734a680 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapResponse.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionBaseMapResponse : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapService.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapService.h new file mode 100644 index 000000000..2da9801dc --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapService.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionBaseMapService + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapServiceRequestDispatcher.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapServiceRequestDispatcher.h new file mode 100644 index 000000000..eadd429b6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionBaseMapServiceRequestDispatcher.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionBaseMapServiceRequestDispatcher : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionContainingAppProxy.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionContainingAppProxy.h new file mode 100644 index 000000000..52f727417 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionContainingAppProxy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionContainingAppProxy : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionContext.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionContext.h new file mode 100644 index 000000000..cc7046c98 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionContext : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionContextType.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionContextType.h new file mode 100644 index 000000000..9e3d0097f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionContextType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionContextType + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionDispatchCenter.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionDispatchCenter.h new file mode 100644 index 000000000..cb7a1806c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionDispatchCenter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionDispatchCenter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionHostContext.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostContext.h new file mode 100644 index 000000000..cec21827f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionHostContext : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionHostContextType.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostContextType.h new file mode 100644 index 000000000..5ae914e24 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostContextType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionHostContextType + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionHostViewController.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostViewController.h new file mode 100644 index 000000000..83ac20955 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionHostViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionHostViewControlling.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostViewControlling.h new file mode 100644 index 000000000..4d25fbe68 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionHostViewControlling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionHostViewControlling + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalServiceProtocol.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalServiceProtocol.h new file mode 100644 index 000000000..b43671003 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalServiceProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionInternalServiceProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalServiceRequestDispatcher.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalServiceRequestDispatcher.h new file mode 100644 index 000000000..b462cb077 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalServiceRequestDispatcher.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionInternalServiceRequestDispatcher : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalStreamingServiceProtocol.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalStreamingServiceProtocol.h new file mode 100644 index 000000000..93d28ecc7 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalStreamingServiceProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionInternalStreamingServiceProtocol + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalStreamingServiceRequestDispatcher.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalStreamingServiceRequestDispatcher.h new file mode 100644 index 000000000..6b98db1cd --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionInternalStreamingServiceRequestDispatcher.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionInternalStreamingServiceRequestDispatcher : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionLookupPolicy.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionLookupPolicy.h new file mode 100644 index 000000000..f54a9ba68 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionLookupPolicy.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionLookupPolicy : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionManager.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionManager.h new file mode 100644 index 000000000..c83cb2ff3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionManager.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionManager : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionMatchingMerger.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionMatchingMerger.h new file mode 100644 index 000000000..17c768d95 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionMatchingMerger.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionMatchingMerger : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionProvider.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionProvider.h new file mode 100644 index 000000000..3bcf573ca --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionProvider.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionProvider : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestDispatcher.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestDispatcher.h new file mode 100644 index 000000000..9ad122db0 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestDispatcher.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRequestDispatcher : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestDispatching.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestDispatching.h new file mode 100644 index 000000000..9990dde23 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestDispatching.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRequestDispatching + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestHandling.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestHandling.h new file mode 100644 index 000000000..6ba25be87 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestHandling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRequestHandling + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestReceipt.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestReceipt.h new file mode 100644 index 000000000..3370e5261 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRequestReceipt.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRequestReceipt : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionResponseObserver.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionResponseObserver.h new file mode 100644 index 000000000..1930cad80 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionResponseObserver.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionResponseObserver + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingRide.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingRide.h new file mode 100644 index 000000000..b85760f3c --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingRide.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRideSharingRide : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingSearchRequest.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingSearchRequest.h new file mode 100644 index 000000000..4b48ca339 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingSearchRequest.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRideSharingSearchRequest : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingSearchResponse.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingSearchResponse.h new file mode 100644 index 000000000..e77090d7d --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionRideSharingSearchResponse.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionRideSharingSearchResponse : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionService.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionService.h new file mode 100644 index 000000000..094dd9b73 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionService.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionService : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionServiceCenter.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionServiceCenter.h new file mode 100644 index 000000000..0e6ae8c5f --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionServiceCenter.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionServiceCenter : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionStreamingRequestDispatching.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionStreamingRequestDispatching.h new file mode 100644 index 000000000..1830590ef --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionStreamingRequestDispatching.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionStreamingRequestDispatching + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionStreamingRequestHandling.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionStreamingRequestHandling.h new file mode 100644 index 000000000..51d9f9993 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionStreamingRequestHandling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionStreamingRequestHandling + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionURLHandling.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionURLHandling.h new file mode 100644 index 000000000..b04e6e12e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionURLHandling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionURLHandling + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorContext.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorContext.h new file mode 100644 index 000000000..37dc90862 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorContext.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionVendorContext : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorContextType.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorContextType.h new file mode 100644 index 000000000..244207973 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorContextType.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionVendorContextType + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorViewController.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorViewController.h new file mode 100644 index 000000000..2cb5147b4 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorViewController.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionVendorViewController : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorViewControlling.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorViewControlling.h new file mode 100644 index 000000000..ed6c1749e --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionVendorViewControlling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionVendorViewControlling + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXExtensionViewControlling.h b/src/frameworks/MapKit/include/MapKit/_MXExtensionViewControlling.h new file mode 100644 index 000000000..ee68b91a3 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXExtensionViewControlling.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXExtensionViewControlling + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXSerialQueue.h b/src/frameworks/MapKit/include/MapKit/_MXSerialQueue.h new file mode 100644 index 000000000..83dde04d6 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXSerialQueue.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXSerialQueue : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_MXVersion.h b/src/frameworks/MapKit/include/MapKit/_MXVersion.h new file mode 100644 index 000000000..7155cd441 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_MXVersion.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _MXVersion : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_NSImageAdaptiveToScale.h b/src/frameworks/MapKit/include/MapKit/_NSImageAdaptiveToScale.h new file mode 100644 index 000000000..0295bf521 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_NSImageAdaptiveToScale.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _NSImageAdaptiveToScale : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_NSImageRepAdaptiveToScale.h b/src/frameworks/MapKit/include/MapKit/_NSImageRepAdaptiveToScale.h new file mode 100644 index 000000000..b0e682849 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_NSImageRepAdaptiveToScale.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _NSImageRepAdaptiveToScale : NSObject + +@end diff --git a/src/frameworks/MapKit/include/MapKit/_mkMapServiceWalletMerchantTicket.h b/src/frameworks/MapKit/include/MapKit/_mkMapServiceWalletMerchantTicket.h new file mode 100644 index 000000000..c35dfdc69 --- /dev/null +++ b/src/frameworks/MapKit/include/MapKit/_mkMapServiceWalletMerchantTicket.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 _mkMapServiceWalletMerchantTicket : NSObject + +@end diff --git a/src/frameworks/MapKit/src/GEOEncyclopedicInfoUserLocation.m b/src/frameworks/MapKit/src/GEOEncyclopedicInfoUserLocation.m new file mode 100644 index 000000000..a66461105 --- /dev/null +++ b/src/frameworks/MapKit/src/GEOEncyclopedicInfoUserLocation.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 GEOEncyclopedicInfoUserLocation + +- (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/MapKit/src/MKAccessibilityItem.m b/src/frameworks/MapKit/src/MKAccessibilityItem.m new file mode 100644 index 000000000..cbb78f38f --- /dev/null +++ b/src/frameworks/MapKit/src/MKAccessibilityItem.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 MKAccessibilityItem + +- (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/MapKit/src/MKAccessiblePlatterView.m b/src/frameworks/MapKit/src/MKAccessiblePlatterView.m new file mode 100644 index 000000000..4a693e234 --- /dev/null +++ b/src/frameworks/MapKit/src/MKAccessiblePlatterView.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 MKAccessiblePlatterView + +- (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/MapKit/src/MKActionRowItemButton.m b/src/frameworks/MapKit/src/MKActionRowItemButton.m new file mode 100644 index 000000000..9a9c01f3c --- /dev/null +++ b/src/frameworks/MapKit/src/MKActionRowItemButton.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 MKActionRowItemButton + +- (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/MapKit/src/MKActionRowItemView.m b/src/frameworks/MapKit/src/MKActionRowItemView.m new file mode 100644 index 000000000..6b79f7483 --- /dev/null +++ b/src/frameworks/MapKit/src/MKActionRowItemView.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 MKActionRowItemView + +- (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/MapKit/src/MKAllRouteETAsManager.m b/src/frameworks/MapKit/src/MKAllRouteETAsManager.m new file mode 100644 index 000000000..80c65ac4a --- /dev/null +++ b/src/frameworks/MapKit/src/MKAllRouteETAsManager.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 MKAllRouteETAsManager + +- (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/MapKit/src/MKAnnotationContainerView.m b/src/frameworks/MapKit/src/MKAnnotationContainerView.m new file mode 100644 index 000000000..4bb2fd1ab --- /dev/null +++ b/src/frameworks/MapKit/src/MKAnnotationContainerView.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 MKAnnotationContainerView + +- (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/MapKit/src/MKAnnotationManager.m b/src/frameworks/MapKit/src/MKAnnotationManager.m new file mode 100644 index 000000000..1ba92f943 --- /dev/null +++ b/src/frameworks/MapKit/src/MKAnnotationManager.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 MKAnnotationManager + +- (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/MapKit/src/MKAnnotationView.m b/src/frameworks/MapKit/src/MKAnnotationView.m new file mode 100644 index 000000000..b5421d3fa --- /dev/null +++ b/src/frameworks/MapKit/src/MKAnnotationView.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 MKAnnotationView + +- (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/MapKit/src/MKAnnotationViewInternal.m b/src/frameworks/MapKit/src/MKAnnotationViewInternal.m new file mode 100644 index 000000000..39661169b --- /dev/null +++ b/src/frameworks/MapKit/src/MKAnnotationViewInternal.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 MKAnnotationViewInternal + +- (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/MapKit/src/MKAppImageManager.m b/src/frameworks/MapKit/src/MKAppImageManager.m new file mode 100644 index 000000000..d84287dfa --- /dev/null +++ b/src/frameworks/MapKit/src/MKAppImageManager.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 MKAppImageManager + +- (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/MapKit/src/MKArtworkDataSourceCache.m b/src/frameworks/MapKit/src/MKArtworkDataSourceCache.m new file mode 100644 index 000000000..bd1f06c53 --- /dev/null +++ b/src/frameworks/MapKit/src/MKArtworkDataSourceCache.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 MKArtworkDataSourceCache + +- (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/MapKit/src/MKArtworkImageView.m b/src/frameworks/MapKit/src/MKArtworkImageView.m new file mode 100644 index 000000000..73a5f07d0 --- /dev/null +++ b/src/frameworks/MapKit/src/MKArtworkImageView.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 MKArtworkImageView + +- (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/MapKit/src/MKAttributeLabelModel.m b/src/frameworks/MapKit/src/MKAttributeLabelModel.m new file mode 100644 index 000000000..202ff66af --- /dev/null +++ b/src/frameworks/MapKit/src/MKAttributeLabelModel.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 MKAttributeLabelModel + +- (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/MapKit/src/MKAttributeUtils.m b/src/frameworks/MapKit/src/MKAttributeUtils.m new file mode 100644 index 000000000..401dbec4c --- /dev/null +++ b/src/frameworks/MapKit/src/MKAttributeUtils.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 MKAttributeUtils + +- (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/MapKit/src/MKAttributedStringBlendingConfiguration.m b/src/frameworks/MapKit/src/MKAttributedStringBlendingConfiguration.m new file mode 100644 index 000000000..cfe50b385 --- /dev/null +++ b/src/frameworks/MapKit/src/MKAttributedStringBlendingConfiguration.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 MKAttributedStringBlendingConfiguration + +- (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/MapKit/src/MKAttributedStringVibrancySplitter.m b/src/frameworks/MapKit/src/MKAttributedStringVibrancySplitter.m new file mode 100644 index 000000000..8280d79dc --- /dev/null +++ b/src/frameworks/MapKit/src/MKAttributedStringVibrancySplitter.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 MKAttributedStringVibrancySplitter + +- (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/MapKit/src/MKAttributionLabel.m b/src/frameworks/MapKit/src/MKAttributionLabel.m new file mode 100644 index 000000000..40468ffae --- /dev/null +++ b/src/frameworks/MapKit/src/MKAttributionLabel.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 MKAttributionLabel + +- (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/MapKit/src/MKAutocompleteAnalyticsProvider.m b/src/frameworks/MapKit/src/MKAutocompleteAnalyticsProvider.m new file mode 100644 index 000000000..799cf60da --- /dev/null +++ b/src/frameworks/MapKit/src/MKAutocompleteAnalyticsProvider.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 MKAutocompleteAnalyticsProvider + +- (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/MapKit/src/MKAutocompleteAnalyticsState.m b/src/frameworks/MapKit/src/MKAutocompleteAnalyticsState.m new file mode 100644 index 000000000..047d048c8 --- /dev/null +++ b/src/frameworks/MapKit/src/MKAutocompleteAnalyticsState.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 MKAutocompleteAnalyticsState + +- (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/MapKit/src/MKBlurBackedControlProxy.m b/src/frameworks/MapKit/src/MKBlurBackedControlProxy.m new file mode 100644 index 000000000..3ec043367 --- /dev/null +++ b/src/frameworks/MapKit/src/MKBlurBackedControlProxy.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 MKBlurBackedControlProxy + +- (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/MapKit/src/MKBlurBackedControlView.m b/src/frameworks/MapKit/src/MKBlurBackedControlView.m new file mode 100644 index 000000000..9ef7ef9f2 --- /dev/null +++ b/src/frameworks/MapKit/src/MKBlurBackedControlView.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 MKBlurBackedControlView + +- (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/MapKit/src/MKBlurBackingLayer.m b/src/frameworks/MapKit/src/MKBlurBackingLayer.m new file mode 100644 index 000000000..70074caef --- /dev/null +++ b/src/frameworks/MapKit/src/MKBlurBackingLayer.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 MKBlurBackingLayer + +- (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/MapKit/src/MKBlurBackingView.m b/src/frameworks/MapKit/src/MKBlurBackingView.m new file mode 100644 index 000000000..d0fe56521 --- /dev/null +++ b/src/frameworks/MapKit/src/MKBlurBackingView.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 MKBlurBackingView + +- (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/MapKit/src/MKButtonWithTargetArgument.m b/src/frameworks/MapKit/src/MKButtonWithTargetArgument.m new file mode 100644 index 000000000..2165f1f28 --- /dev/null +++ b/src/frameworks/MapKit/src/MKButtonWithTargetArgument.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 MKButtonWithTargetArgument + +- (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/MapKit/src/MKCALayerCompletionDelegate.m b/src/frameworks/MapKit/src/MKCALayerCompletionDelegate.m new file mode 100644 index 000000000..bdfd4b10d --- /dev/null +++ b/src/frameworks/MapKit/src/MKCALayerCompletionDelegate.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 MKCALayerCompletionDelegate + +- (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/MapKit/src/MKCalloutLayer.m b/src/frameworks/MapKit/src/MKCalloutLayer.m new file mode 100644 index 000000000..464f71c61 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCalloutLayer.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 MKCalloutLayer + +- (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/MapKit/src/MKCalloutShadowView.m b/src/frameworks/MapKit/src/MKCalloutShadowView.m new file mode 100644 index 000000000..e66dd1500 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCalloutShadowView.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 MKCalloutShadowView + +- (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/MapKit/src/MKCalloutView.m b/src/frameworks/MapKit/src/MKCalloutView.m new file mode 100644 index 000000000..c9bf9be57 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCalloutView.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 MKCalloutView + +- (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/MapKit/src/MKCircle.m b/src/frameworks/MapKit/src/MKCircle.m new file mode 100644 index 000000000..7a8a49bd2 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCircle.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 MKCircle + +- (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/MapKit/src/MKCircleRenderer.m b/src/frameworks/MapKit/src/MKCircleRenderer.m new file mode 100644 index 000000000..c9c0c15e3 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCircleRenderer.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 MKCircleRenderer + +- (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/MapKit/src/MKClusterAnnotation.m b/src/frameworks/MapKit/src/MKClusterAnnotation.m new file mode 100644 index 000000000..5468850dc --- /dev/null +++ b/src/frameworks/MapKit/src/MKClusterAnnotation.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 MKClusterAnnotation + +- (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/MapKit/src/MKCompassLayer.m b/src/frameworks/MapKit/src/MKCompassLayer.m new file mode 100644 index 000000000..9c59d1703 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCompassLayer.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 MKCompassLayer + +- (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/MapKit/src/MKCompassView.m b/src/frameworks/MapKit/src/MKCompassView.m new file mode 100644 index 000000000..cbfa6a8a1 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCompassView.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 MKCompassView + +- (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/MapKit/src/MKCoreLocationProvider.m b/src/frameworks/MapKit/src/MKCoreLocationProvider.m new file mode 100644 index 000000000..6fa6f499e --- /dev/null +++ b/src/frameworks/MapKit/src/MKCoreLocationProvider.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 MKCoreLocationProvider + +- (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/MapKit/src/MKCustomSeparatorTableViewCell.m b/src/frameworks/MapKit/src/MKCustomSeparatorTableViewCell.m new file mode 100644 index 000000000..52f9dbf78 --- /dev/null +++ b/src/frameworks/MapKit/src/MKCustomSeparatorTableViewCell.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 MKCustomSeparatorTableViewCell + +- (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/MapKit/src/MKDirections.m b/src/frameworks/MapKit/src/MKDirections.m new file mode 100644 index 000000000..a6e7c4e0d --- /dev/null +++ b/src/frameworks/MapKit/src/MKDirections.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 MKDirections + +- (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/MapKit/src/MKDirectionsRequest.m b/src/frameworks/MapKit/src/MKDirectionsRequest.m new file mode 100644 index 000000000..2eaf9a0a0 --- /dev/null +++ b/src/frameworks/MapKit/src/MKDirectionsRequest.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 MKDirectionsRequest + +- (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/MapKit/src/MKDirectionsResponse.m b/src/frameworks/MapKit/src/MKDirectionsResponse.m new file mode 100644 index 000000000..9e8a2d548 --- /dev/null +++ b/src/frameworks/MapKit/src/MKDirectionsResponse.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 MKDirectionsResponse + +- (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/MapKit/src/MKDistanceFormatter.m b/src/frameworks/MapKit/src/MKDistanceFormatter.m new file mode 100644 index 000000000..7fea80eac --- /dev/null +++ b/src/frameworks/MapKit/src/MKDistanceFormatter.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 MKDistanceFormatter + +- (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/MapKit/src/MKETAProvider.m b/src/frameworks/MapKit/src/MKETAProvider.m new file mode 100644 index 000000000..ff7068d57 --- /dev/null +++ b/src/frameworks/MapKit/src/MKETAProvider.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 MKETAProvider + +- (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/MapKit/src/MKETAResponse.m b/src/frameworks/MapKit/src/MKETAResponse.m new file mode 100644 index 000000000..1d5ceefc9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKETAResponse.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 MKETAResponse + +- (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/MapKit/src/MKEmptyTextAttachment.m b/src/frameworks/MapKit/src/MKEmptyTextAttachment.m new file mode 100644 index 000000000..4801ce3f7 --- /dev/null +++ b/src/frameworks/MapKit/src/MKEmptyTextAttachment.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 MKEmptyTextAttachment + +- (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/MapKit/src/MKEmptyTextAttachmentCell.m b/src/frameworks/MapKit/src/MKEmptyTextAttachmentCell.m new file mode 100644 index 000000000..f877b39e4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKEmptyTextAttachmentCell.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 MKEmptyTextAttachmentCell + +- (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/MapKit/src/MKGeodesicPolyline.m b/src/frameworks/MapKit/src/MKGeodesicPolyline.m new file mode 100644 index 000000000..30eb4d0de --- /dev/null +++ b/src/frameworks/MapKit/src/MKGeodesicPolyline.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 MKGeodesicPolyline + +- (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/MapKit/src/MKIconManager.m b/src/frameworks/MapKit/src/MKIconManager.m new file mode 100644 index 000000000..f08c9e564 --- /dev/null +++ b/src/frameworks/MapKit/src/MKIconManager.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 MKIconManager + +- (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/MapKit/src/MKImageAttachmentCell.m b/src/frameworks/MapKit/src/MKImageAttachmentCell.m new file mode 100644 index 000000000..2b61c14ca --- /dev/null +++ b/src/frameworks/MapKit/src/MKImageAttachmentCell.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 MKImageAttachmentCell + +- (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/MapKit/src/MKImageTextAttachment.m b/src/frameworks/MapKit/src/MKImageTextAttachment.m new file mode 100644 index 000000000..c91da58ec --- /dev/null +++ b/src/frameworks/MapKit/src/MKImageTextAttachment.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 MKImageTextAttachment + +- (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/MapKit/src/MKImageView.m b/src/frameworks/MapKit/src/MKImageView.m new file mode 100644 index 000000000..e1b3eb0cb --- /dev/null +++ b/src/frameworks/MapKit/src/MKImageView.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 MKImageView + +- (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/MapKit/src/MKIncidentTextView.m b/src/frameworks/MapKit/src/MKIncidentTextView.m new file mode 100644 index 000000000..a8e6fd1b4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKIncidentTextView.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 MKIncidentTextView + +- (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/MapKit/src/MKInfoCardDetailView.m b/src/frameworks/MapKit/src/MKInfoCardDetailView.m new file mode 100644 index 000000000..9c91fdf65 --- /dev/null +++ b/src/frameworks/MapKit/src/MKInfoCardDetailView.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 MKInfoCardDetailView + +- (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/MapKit/src/MKInfoCardReportAProblemController.m b/src/frameworks/MapKit/src/MKInfoCardReportAProblemController.m new file mode 100644 index 000000000..bcc66740a --- /dev/null +++ b/src/frameworks/MapKit/src/MKInfoCardReportAProblemController.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 MKInfoCardReportAProblemController + +- (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/MapKit/src/MKInfoCardThemeManager.m b/src/frameworks/MapKit/src/MKInfoCardThemeManager.m new file mode 100644 index 000000000..2f8806273 --- /dev/null +++ b/src/frameworks/MapKit/src/MKInfoCardThemeManager.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 MKInfoCardThemeManager + +- (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/MapKit/src/MKJunction.m b/src/frameworks/MapKit/src/MKJunction.m new file mode 100644 index 000000000..3d3698908 --- /dev/null +++ b/src/frameworks/MapKit/src/MKJunction.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 MKJunction + +- (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/MapKit/src/MKLabelMarker.m b/src/frameworks/MapKit/src/MKLabelMarker.m new file mode 100644 index 000000000..901a77950 --- /dev/null +++ b/src/frameworks/MapKit/src/MKLabelMarker.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 MKLabelMarker + +- (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/MapKit/src/MKLayer.m b/src/frameworks/MapKit/src/MKLayer.m new file mode 100644 index 000000000..001db42bc --- /dev/null +++ b/src/frameworks/MapKit/src/MKLayer.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 MKLayer + +- (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/MapKit/src/MKLayoutCardViewController.m b/src/frameworks/MapKit/src/MKLayoutCardViewController.m new file mode 100644 index 000000000..f0c070f71 --- /dev/null +++ b/src/frameworks/MapKit/src/MKLayoutCardViewController.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 MKLayoutCardViewController + +- (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/MapKit/src/MKLinkTextField.m b/src/frameworks/MapKit/src/MKLinkTextField.m new file mode 100644 index 000000000..77dda10ca --- /dev/null +++ b/src/frameworks/MapKit/src/MKLinkTextField.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 MKLinkTextField + +- (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/MapKit/src/MKLocalSearch.m b/src/frameworks/MapKit/src/MKLocalSearch.m new file mode 100644 index 000000000..a002edf9b --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocalSearch.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 MKLocalSearch + +- (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/MapKit/src/MKLocalSearchCompleter.m b/src/frameworks/MapKit/src/MKLocalSearchCompleter.m new file mode 100644 index 000000000..ce1416b3b --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocalSearchCompleter.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 MKLocalSearchCompleter + +- (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/MapKit/src/MKLocalSearchCompletion.m b/src/frameworks/MapKit/src/MKLocalSearchCompletion.m new file mode 100644 index 000000000..28fdfae27 --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocalSearchCompletion.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 MKLocalSearchCompletion + +- (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/MapKit/src/MKLocalSearchKeypressMetrics.m b/src/frameworks/MapKit/src/MKLocalSearchKeypressMetrics.m new file mode 100644 index 000000000..8f898ed63 --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocalSearchKeypressMetrics.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 MKLocalSearchKeypressMetrics + +- (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/MapKit/src/MKLocalSearchRequest.m b/src/frameworks/MapKit/src/MKLocalSearchRequest.m new file mode 100644 index 000000000..10afdd169 --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocalSearchRequest.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 MKLocalSearchRequest + +- (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/MapKit/src/MKLocalSearchResponse.m b/src/frameworks/MapKit/src/MKLocalSearchResponse.m new file mode 100644 index 000000000..39f0558ad --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocalSearchResponse.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 MKLocalSearchResponse + +- (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/MapKit/src/MKLocationManager.m b/src/frameworks/MapKit/src/MKLocationManager.m new file mode 100644 index 000000000..e3e462dee --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocationManager.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 MKLocationManager + +- (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/MapKit/src/MKLocationManagerSingleUpdater.m b/src/frameworks/MapKit/src/MKLocationManagerSingleUpdater.m new file mode 100644 index 000000000..9b7cdf573 --- /dev/null +++ b/src/frameworks/MapKit/src/MKLocationManagerSingleUpdater.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 MKLocationManagerSingleUpdater + +- (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/MapKit/src/MKMapAttribution.m b/src/frameworks/MapKit/src/MKMapAttribution.m new file mode 100644 index 000000000..f6aedb6df --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapAttribution.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 MKMapAttribution + +- (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/MapKit/src/MKMapAttributionImage.m b/src/frameworks/MapKit/src/MKMapAttributionImage.m new file mode 100644 index 000000000..fa65bc588 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapAttributionImage.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 MKMapAttributionImage + +- (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/MapKit/src/MKMapCamera.m b/src/frameworks/MapKit/src/MKMapCamera.m new file mode 100644 index 000000000..8693baa08 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapCamera.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 MKMapCamera + +- (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/MapKit/src/MKMapGestureController.m b/src/frameworks/MapKit/src/MKMapGestureController.m new file mode 100644 index 000000000..7094b0c49 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapGestureController.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 MKMapGestureController + +- (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/MapKit/src/MKMapItem.m b/src/frameworks/MapKit/src/MKMapItem.m new file mode 100644 index 000000000..07c2f7743 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItem.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 MKMapItem + +- (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/MapKit/src/MKMapItemIdentifier.m b/src/frameworks/MapKit/src/MKMapItemIdentifier.m new file mode 100644 index 000000000..7b0cfdca4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItemIdentifier.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 MKMapItemIdentifier + +- (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/MapKit/src/MKMapItemMetadata.m b/src/frameworks/MapKit/src/MKMapItemMetadata.m new file mode 100644 index 000000000..2b0c8eb81 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItemMetadata.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 MKMapItemMetadata + +- (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/MapKit/src/MKMapItemMetadataImageRequest.m b/src/frameworks/MapKit/src/MKMapItemMetadataImageRequest.m new file mode 100644 index 000000000..a5a377cd9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItemMetadataImageRequest.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 MKMapItemMetadataImageRequest + +- (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/MapKit/src/MKMapItemMetadataRequest.m b/src/frameworks/MapKit/src/MKMapItemMetadataRequest.m new file mode 100644 index 000000000..9e22f2c22 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItemMetadataRequest.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 MKMapItemMetadataRequest + +- (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/MapKit/src/MKMapItemMetadataRequester.m b/src/frameworks/MapKit/src/MKMapItemMetadataRequester.m new file mode 100644 index 000000000..f8c7b5099 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItemMetadataRequester.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 MKMapItemMetadataRequester + +- (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/MapKit/src/MKMapItemPhoto.m b/src/frameworks/MapKit/src/MKMapItemPhoto.m new file mode 100644 index 000000000..52c7b386a --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapItemPhoto.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 MKMapItemPhoto + +- (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/MapKit/src/MKMapService.m b/src/frameworks/MapKit/src/MKMapService.m new file mode 100644 index 000000000..122072dca --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapService.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 MKMapService + +- (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/MapKit/src/MKMapSnapshot.m b/src/frameworks/MapKit/src/MKMapSnapshot.m new file mode 100644 index 000000000..935801fb1 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapSnapshot.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 MKMapSnapshot + +- (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/MapKit/src/MKMapSnapshotCreator.m b/src/frameworks/MapKit/src/MKMapSnapshotCreator.m new file mode 100644 index 000000000..fa019e684 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapSnapshotCreator.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 MKMapSnapshotCreator + +- (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/MapKit/src/MKMapSnapshotFeatureAnnotation.m b/src/frameworks/MapKit/src/MKMapSnapshotFeatureAnnotation.m new file mode 100644 index 000000000..c551c9eeb --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapSnapshotFeatureAnnotation.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 MKMapSnapshotFeatureAnnotation + +- (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/MapKit/src/MKMapSnapshotOptions.m b/src/frameworks/MapKit/src/MKMapSnapshotOptions.m new file mode 100644 index 000000000..4ef58db65 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapSnapshotOptions.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 MKMapSnapshotOptions + +- (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/MapKit/src/MKMapSnapshotter.m b/src/frameworks/MapKit/src/MKMapSnapshotter.m new file mode 100644 index 000000000..74ff638f7 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapSnapshotter.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 MKMapSnapshotter + +- (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/MapKit/src/MKMapView.m b/src/frameworks/MapKit/src/MKMapView.m new file mode 100644 index 000000000..c4452948c --- /dev/null +++ b/src/frameworks/MapKit/src/MKMapView.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 MKMapView + +- (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/MapKit/src/MKModernUserLocationView.m b/src/frameworks/MapKit/src/MKModernUserLocationView.m new file mode 100644 index 000000000..52f925cac --- /dev/null +++ b/src/frameworks/MapKit/src/MKModernUserLocationView.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 MKModernUserLocationView + +- (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/MapKit/src/MKMouseOverActionView.m b/src/frameworks/MapKit/src/MKMouseOverActionView.m new file mode 100644 index 000000000..0835a3e61 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMouseOverActionView.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 MKMouseOverActionView + +- (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/MapKit/src/MKMouseOverLabelRecognizer.m b/src/frameworks/MapKit/src/MKMouseOverLabelRecognizer.m new file mode 100644 index 000000000..05e80dcfb --- /dev/null +++ b/src/frameworks/MapKit/src/MKMouseOverLabelRecognizer.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 MKMouseOverLabelRecognizer + +- (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/MapKit/src/MKMultiPartAttributedString.m b/src/frameworks/MapKit/src/MKMultiPartAttributedString.m new file mode 100644 index 000000000..b573d20c0 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMultiPartAttributedString.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 MKMultiPartAttributedString + +- (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/MapKit/src/MKMultiPartLabel.m b/src/frameworks/MapKit/src/MKMultiPartLabel.m new file mode 100644 index 000000000..19163ebbc --- /dev/null +++ b/src/frameworks/MapKit/src/MKMultiPartLabel.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 MKMultiPartLabel + +- (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/MapKit/src/MKMultiPoint.m b/src/frameworks/MapKit/src/MKMultiPoint.m new file mode 100644 index 000000000..4f0a05d87 --- /dev/null +++ b/src/frameworks/MapKit/src/MKMultiPoint.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 MKMultiPoint + +- (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/MapKit/src/MKOrientationContext.m b/src/frameworks/MapKit/src/MKOrientationContext.m new file mode 100644 index 000000000..f22e882db --- /dev/null +++ b/src/frameworks/MapKit/src/MKOrientationContext.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 MKOrientationContext + +- (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/MapKit/src/MKOverlayContainerView.m b/src/frameworks/MapKit/src/MKOverlayContainerView.m new file mode 100644 index 000000000..b5021502a --- /dev/null +++ b/src/frameworks/MapKit/src/MKOverlayContainerView.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 MKOverlayContainerView + +- (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/MapKit/src/MKOverlayPathRenderer.m b/src/frameworks/MapKit/src/MKOverlayPathRenderer.m new file mode 100644 index 000000000..8aa94fc6d --- /dev/null +++ b/src/frameworks/MapKit/src/MKOverlayPathRenderer.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 MKOverlayPathRenderer + +- (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/MapKit/src/MKOverlayRenderer.m b/src/frameworks/MapKit/src/MKOverlayRenderer.m new file mode 100644 index 000000000..f54187033 --- /dev/null +++ b/src/frameworks/MapKit/src/MKOverlayRenderer.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 MKOverlayRenderer + +- (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/MapKit/src/MKPhotoBigAttributionView.m b/src/frameworks/MapKit/src/MKPhotoBigAttributionView.m new file mode 100644 index 000000000..efac0f580 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPhotoBigAttributionView.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 MKPhotoBigAttributionView + +- (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/MapKit/src/MKPhotoSmallAttributionView.m b/src/frameworks/MapKit/src/MKPhotoSmallAttributionView.m new file mode 100644 index 000000000..b02cd0244 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPhotoSmallAttributionView.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 MKPhotoSmallAttributionView + +- (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/MapKit/src/MKPinAnnotationView.m b/src/frameworks/MapKit/src/MKPinAnnotationView.m new file mode 100644 index 000000000..3bba15382 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPinAnnotationView.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 MKPinAnnotationView + +- (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/MapKit/src/MKPlaceActionManager.m b/src/frameworks/MapKit/src/MKPlaceActionManager.m new file mode 100644 index 000000000..7a86cb5f9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceActionManager.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 MKPlaceActionManager + +- (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/MapKit/src/MKPlaceActivityProvider.m b/src/frameworks/MapKit/src/MKPlaceActivityProvider.m new file mode 100644 index 000000000..6d7b29da4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceActivityProvider.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 MKPlaceActivityProvider + +- (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/MapKit/src/MKPlaceAttributionCell.m b/src/frameworks/MapKit/src/MKPlaceAttributionCell.m new file mode 100644 index 000000000..ed35c2943 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceAttributionCell.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 MKPlaceAttributionCell + +- (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/MapKit/src/MKPlaceAttributionCellButton.m b/src/frameworks/MapKit/src/MKPlaceAttributionCellButton.m new file mode 100644 index 000000000..4e4e1d556 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceAttributionCellButton.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 MKPlaceAttributionCellButton + +- (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/MapKit/src/MKPlaceAttributionLabel.m b/src/frameworks/MapKit/src/MKPlaceAttributionLabel.m new file mode 100644 index 000000000..134f5108a --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceAttributionLabel.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 MKPlaceAttributionLabel + +- (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/MapKit/src/MKPlaceAttributionViewController.m b/src/frameworks/MapKit/src/MKPlaceAttributionViewController.m new file mode 100644 index 000000000..a4e52fd1a --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceAttributionViewController.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 MKPlaceAttributionViewController + +- (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/MapKit/src/MKPlaceBusinessInfoViewController.m b/src/frameworks/MapKit/src/MKPlaceBusinessInfoViewController.m new file mode 100644 index 000000000..667a51779 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceBusinessInfoViewController.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 MKPlaceBusinessInfoViewController + +- (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/MapKit/src/MKPlaceCardActionItem.m b/src/frameworks/MapKit/src/MKPlaceCardActionItem.m new file mode 100644 index 000000000..342571bd2 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCardActionItem.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 MKPlaceCardActionItem + +- (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/MapKit/src/MKPlaceCardActionSectionView.m b/src/frameworks/MapKit/src/MKPlaceCardActionSectionView.m new file mode 100644 index 000000000..3ef470c7d --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCardActionSectionView.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 MKPlaceCardActionSectionView + +- (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/MapKit/src/MKPlaceCardActionsRowViewController.m b/src/frameworks/MapKit/src/MKPlaceCardActionsRowViewController.m new file mode 100644 index 000000000..82f5781a8 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCardActionsRowViewController.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 MKPlaceCardActionsRowViewController + +- (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/MapKit/src/MKPlaceCardActionsViewController.m b/src/frameworks/MapKit/src/MKPlaceCardActionsViewController.m new file mode 100644 index 000000000..753dc24c6 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCardActionsViewController.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 MKPlaceCardActionsViewController + +- (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/MapKit/src/MKPlaceCardFooterActionsViewController.m b/src/frameworks/MapKit/src/MKPlaceCardFooterActionsViewController.m new file mode 100644 index 000000000..25bb93182 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCardFooterActionsViewController.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 MKPlaceCardFooterActionsViewController + +- (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/MapKit/src/MKPlaceCardHeaderViewController.m b/src/frameworks/MapKit/src/MKPlaceCardHeaderViewController.m new file mode 100644 index 000000000..bff8441d4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCardHeaderViewController.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 MKPlaceCardHeaderViewController + +- (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/MapKit/src/MKPlaceCompleteHoursView.m b/src/frameworks/MapKit/src/MKPlaceCompleteHoursView.m new file mode 100644 index 000000000..85b22d512 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceCompleteHoursView.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 MKPlaceCompleteHoursView + +- (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/MapKit/src/MKPlaceEncyclopedicFactoidView.m b/src/frameworks/MapKit/src/MKPlaceEncyclopedicFactoidView.m new file mode 100644 index 000000000..5936dce2b --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceEncyclopedicFactoidView.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 MKPlaceEncyclopedicFactoidView + +- (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/MapKit/src/MKPlaceEncyclopedicRowView.m b/src/frameworks/MapKit/src/MKPlaceEncyclopedicRowView.m new file mode 100644 index 000000000..e1c533673 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceEncyclopedicRowView.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 MKPlaceEncyclopedicRowView + +- (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/MapKit/src/MKPlaceEncyclopedicTextItem.m b/src/frameworks/MapKit/src/MKPlaceEncyclopedicTextItem.m new file mode 100644 index 000000000..37c178472 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceEncyclopedicTextItem.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 MKPlaceEncyclopedicTextItem + +- (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/MapKit/src/MKPlaceEncyclopedicViewController.m b/src/frameworks/MapKit/src/MKPlaceEncyclopedicViewController.m new file mode 100644 index 000000000..c7090cd01 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceEncyclopedicViewController.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 MKPlaceEncyclopedicViewController + +- (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/MapKit/src/MKPlaceHeaderButton.m b/src/frameworks/MapKit/src/MKPlaceHeaderButton.m new file mode 100644 index 000000000..a8901d195 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceHeaderButton.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 MKPlaceHeaderButton + +- (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/MapKit/src/MKPlaceHeaderButtonsViewController.m b/src/frameworks/MapKit/src/MKPlaceHeaderButtonsViewController.m new file mode 100644 index 000000000..a5b689095 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceHeaderButtonsViewController.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 MKPlaceHeaderButtonsViewController + +- (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/MapKit/src/MKPlaceHoursDayRow.m b/src/frameworks/MapKit/src/MKPlaceHoursDayRow.m new file mode 100644 index 000000000..5c84b51e8 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceHoursDayRow.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 MKPlaceHoursDayRow + +- (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/MapKit/src/MKPlaceHoursView.m b/src/frameworks/MapKit/src/MKPlaceHoursView.m new file mode 100644 index 000000000..ca1f419d7 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceHoursView.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 MKPlaceHoursView + +- (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/MapKit/src/MKPlaceHoursViewController.m b/src/frameworks/MapKit/src/MKPlaceHoursViewController.m new file mode 100644 index 000000000..af66eace9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceHoursViewController.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 MKPlaceHoursViewController + +- (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/MapKit/src/MKPlaceHoursViewHelper.m b/src/frameworks/MapKit/src/MKPlaceHoursViewHelper.m new file mode 100644 index 000000000..baf7d84ad --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceHoursViewHelper.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 MKPlaceHoursViewHelper + +- (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/MapKit/src/MKPlaceInfoBusinessMessageRowView.m b/src/frameworks/MapKit/src/MKPlaceInfoBusinessMessageRowView.m new file mode 100644 index 000000000..263b20658 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoBusinessMessageRowView.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 MKPlaceInfoBusinessMessageRowView + +- (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/MapKit/src/MKPlaceInfoContactRowView.m b/src/frameworks/MapKit/src/MKPlaceInfoContactRowView.m new file mode 100644 index 000000000..ceaad3b64 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoContactRowView.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 MKPlaceInfoContactRowView + +- (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/MapKit/src/MKPlaceInfoEmailRowView.m b/src/frameworks/MapKit/src/MKPlaceInfoEmailRowView.m new file mode 100644 index 000000000..07eb0ab27 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoEmailRowView.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 MKPlaceInfoEmailRowView + +- (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/MapKit/src/MKPlaceInfoPhoneNumberView.m b/src/frameworks/MapKit/src/MKPlaceInfoPhoneNumberView.m new file mode 100644 index 000000000..66445bb74 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoPhoneNumberView.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 MKPlaceInfoPhoneNumberView + +- (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/MapKit/src/MKPlaceInfoPostalAddressRowView.m b/src/frameworks/MapKit/src/MKPlaceInfoPostalAddressRowView.m new file mode 100644 index 000000000..aeccfa73f --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoPostalAddressRowView.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 MKPlaceInfoPostalAddressRowView + +- (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/MapKit/src/MKPlaceInfoRow.m b/src/frameworks/MapKit/src/MKPlaceInfoRow.m new file mode 100644 index 000000000..050e3e286 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoRow.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 MKPlaceInfoRow + +- (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/MapKit/src/MKPlaceInfoURLRowView.m b/src/frameworks/MapKit/src/MKPlaceInfoURLRowView.m new file mode 100644 index 000000000..2c2a7e8ba --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoURLRowView.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 MKPlaceInfoURLRowView + +- (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/MapKit/src/MKPlaceInfoViewController.m b/src/frameworks/MapKit/src/MKPlaceInfoViewController.m new file mode 100644 index 000000000..55ae4c4a2 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInfoViewController.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 MKPlaceInfoViewController + +- (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/MapKit/src/MKPlaceInlineMapViewController.m b/src/frameworks/MapKit/src/MKPlaceInlineMapViewController.m new file mode 100644 index 000000000..e596afe4d --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceInlineMapViewController.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 MKPlaceInlineMapViewController + +- (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/MapKit/src/MKPlaceLocVCardActivityProvider.m b/src/frameworks/MapKit/src/MKPlaceLocVCardActivityProvider.m new file mode 100644 index 000000000..fee915016 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceLocVCardActivityProvider.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 MKPlaceLocVCardActivityProvider + +- (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/MapKit/src/MKPlaceMapItemActivityProvider.m b/src/frameworks/MapKit/src/MKPlaceMapItemActivityProvider.m new file mode 100644 index 000000000..cb087d3ea --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceMapItemActivityProvider.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 MKPlaceMapItemActivityProvider + +- (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/MapKit/src/MKPlaceMessageHoursViewController.m b/src/frameworks/MapKit/src/MKPlaceMessageHoursViewController.m new file mode 100644 index 000000000..7f4d80d61 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceMessageHoursViewController.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 MKPlaceMessageHoursViewController + +- (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/MapKit/src/MKPlacePhotosViewController.m b/src/frameworks/MapKit/src/MKPlacePhotosViewController.m new file mode 100644 index 000000000..4ce4f0be9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlacePhotosViewController.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 MKPlacePhotosViewController + +- (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/MapKit/src/MKPlacePoisInlineMapViewController.m b/src/frameworks/MapKit/src/MKPlacePoisInlineMapViewController.m new file mode 100644 index 000000000..7cb578afe --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlacePoisInlineMapViewController.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 MKPlacePoisInlineMapViewController + +- (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/MapKit/src/MKPlaceReservationRowView.m b/src/frameworks/MapKit/src/MKPlaceReservationRowView.m new file mode 100644 index 000000000..cb517ba69 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceReservationRowView.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 MKPlaceReservationRowView + +- (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/MapKit/src/MKPlaceReservationViewController.m b/src/frameworks/MapKit/src/MKPlaceReservationViewController.m new file mode 100644 index 000000000..c85112ec2 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceReservationViewController.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 MKPlaceReservationViewController + +- (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/MapKit/src/MKPlaceReviewAvatarGenerator.m b/src/frameworks/MapKit/src/MKPlaceReviewAvatarGenerator.m new file mode 100644 index 000000000..6d8f8492f --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceReviewAvatarGenerator.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 MKPlaceReviewAvatarGenerator + +- (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/MapKit/src/MKPlaceReviewsViewCell.m b/src/frameworks/MapKit/src/MKPlaceReviewsViewCell.m new file mode 100644 index 000000000..3b79ad66c --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceReviewsViewCell.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 MKPlaceReviewsViewCell + +- (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/MapKit/src/MKPlaceReviewsViewController.m b/src/frameworks/MapKit/src/MKPlaceReviewsViewController.m new file mode 100644 index 000000000..e25b56516 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceReviewsViewController.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 MKPlaceReviewsViewController + +- (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/MapKit/src/MKPlaceSectionHeaderView.m b/src/frameworks/MapKit/src/MKPlaceSectionHeaderView.m new file mode 100644 index 000000000..13cdbb7d3 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceSectionHeaderView.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 MKPlaceSectionHeaderView + +- (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/MapKit/src/MKPlaceSectionItemView.m b/src/frameworks/MapKit/src/MKPlaceSectionItemView.m new file mode 100644 index 000000000..72b25724e --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceSectionItemView.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 MKPlaceSectionItemView + +- (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/MapKit/src/MKPlaceSectionRowView.m b/src/frameworks/MapKit/src/MKPlaceSectionRowView.m new file mode 100644 index 000000000..4cecc8722 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceSectionRowView.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 MKPlaceSectionRowView + +- (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/MapKit/src/MKPlaceSectionView.m b/src/frameworks/MapKit/src/MKPlaceSectionView.m new file mode 100644 index 000000000..557982b1b --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceSectionView.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 MKPlaceSectionView + +- (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/MapKit/src/MKPlaceSectionViewController.m b/src/frameworks/MapKit/src/MKPlaceSectionViewController.m new file mode 100644 index 000000000..9257e8eb9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceSectionViewController.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 MKPlaceSectionViewController + +- (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/MapKit/src/MKPlaceServiceHoursView.m b/src/frameworks/MapKit/src/MKPlaceServiceHoursView.m new file mode 100644 index 000000000..6a8ffb6f6 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceServiceHoursView.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 MKPlaceServiceHoursView + +- (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/MapKit/src/MKPlaceServiceHoursViewController.m b/src/frameworks/MapKit/src/MKPlaceServiceHoursViewController.m new file mode 100644 index 000000000..d79d23d60 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceServiceHoursViewController.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 MKPlaceServiceHoursViewController + +- (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/MapKit/src/MKPlaceTextActivityProvider.m b/src/frameworks/MapKit/src/MKPlaceTextActivityProvider.m new file mode 100644 index 000000000..f36daf0bd --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceTextActivityProvider.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 MKPlaceTextActivityProvider + +- (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/MapKit/src/MKPlaceTextBlockCell.m b/src/frameworks/MapKit/src/MKPlaceTextBlockCell.m new file mode 100644 index 000000000..579fdfa68 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceTextBlockCell.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 MKPlaceTextBlockCell + +- (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/MapKit/src/MKPlaceTextCell.m b/src/frameworks/MapKit/src/MKPlaceTextCell.m new file mode 100644 index 000000000..11a2c9c35 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceTextCell.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 MKPlaceTextCell + +- (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/MapKit/src/MKPlaceTopBarViewController.m b/src/frameworks/MapKit/src/MKPlaceTopBarViewController.m new file mode 100644 index 000000000..4e097bfe3 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceTopBarViewController.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 MKPlaceTopBarViewController + +- (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/MapKit/src/MKPlaceURLActivityProvider.m b/src/frameworks/MapKit/src/MKPlaceURLActivityProvider.m new file mode 100644 index 000000000..77f8ca3c5 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceURLActivityProvider.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 MKPlaceURLActivityProvider + +- (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/MapKit/src/MKPlaceUnfinishedViewController.m b/src/frameworks/MapKit/src/MKPlaceUnfinishedViewController.m new file mode 100644 index 000000000..1ddf5109c --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlaceUnfinishedViewController.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 MKPlaceUnfinishedViewController + +- (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/MapKit/src/MKPlacemark.m b/src/frameworks/MapKit/src/MKPlacemark.m new file mode 100644 index 000000000..bed6a8bec --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlacemark.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 MKPlacemark + +- (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/MapKit/src/MKPlatterView.m b/src/frameworks/MapKit/src/MKPlatterView.m new file mode 100644 index 000000000..e19c7d15d --- /dev/null +++ b/src/frameworks/MapKit/src/MKPlatterView.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 MKPlatterView + +- (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/MapKit/src/MKPointAnnotation.m b/src/frameworks/MapKit/src/MKPointAnnotation.m new file mode 100644 index 000000000..9e8910123 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPointAnnotation.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 MKPointAnnotation + +- (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/MapKit/src/MKPolygon.m b/src/frameworks/MapKit/src/MKPolygon.m new file mode 100644 index 000000000..829147800 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPolygon.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 MKPolygon + +- (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/MapKit/src/MKPolygonRenderer.m b/src/frameworks/MapKit/src/MKPolygonRenderer.m new file mode 100644 index 000000000..7768326c4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPolygonRenderer.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 MKPolygonRenderer + +- (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/MapKit/src/MKPolyline.m b/src/frameworks/MapKit/src/MKPolyline.m new file mode 100644 index 000000000..2223024b9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPolyline.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 MKPolyline + +- (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/MapKit/src/MKPolylineRenderer.m b/src/frameworks/MapKit/src/MKPolylineRenderer.m new file mode 100644 index 000000000..482459ff5 --- /dev/null +++ b/src/frameworks/MapKit/src/MKPolylineRenderer.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 MKPolylineRenderer + +- (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/MapKit/src/MKQuadTrie.m b/src/frameworks/MapKit/src/MKQuadTrie.m new file mode 100644 index 000000000..e8da7e9af --- /dev/null +++ b/src/frameworks/MapKit/src/MKQuadTrie.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 MKQuadTrie + +- (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/MapKit/src/MKResizableImage.m b/src/frameworks/MapKit/src/MKResizableImage.m new file mode 100644 index 000000000..558582a37 --- /dev/null +++ b/src/frameworks/MapKit/src/MKResizableImage.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 MKResizableImage + +- (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/MapKit/src/MKResizedArtworkDataSourceCache.m b/src/frameworks/MapKit/src/MKResizedArtworkDataSourceCache.m new file mode 100644 index 000000000..8977765f4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKResizedArtworkDataSourceCache.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 MKResizedArtworkDataSourceCache + +- (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/MapKit/src/MKRotationFilter.m b/src/frameworks/MapKit/src/MKRotationFilter.m new file mode 100644 index 000000000..ca778a0f5 --- /dev/null +++ b/src/frameworks/MapKit/src/MKRotationFilter.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 MKRotationFilter + +- (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/MapKit/src/MKRoute.m b/src/frameworks/MapKit/src/MKRoute.m new file mode 100644 index 000000000..3c496ea02 --- /dev/null +++ b/src/frameworks/MapKit/src/MKRoute.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 MKRoute + +- (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/MapKit/src/MKRouteActivityProvider.m b/src/frameworks/MapKit/src/MKRouteActivityProvider.m new file mode 100644 index 000000000..681e18efe --- /dev/null +++ b/src/frameworks/MapKit/src/MKRouteActivityProvider.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 MKRouteActivityProvider + +- (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/MapKit/src/MKRoutePolyline.m b/src/frameworks/MapKit/src/MKRoutePolyline.m new file mode 100644 index 000000000..afb61237d --- /dev/null +++ b/src/frameworks/MapKit/src/MKRoutePolyline.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 MKRoutePolyline + +- (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/MapKit/src/MKRouteStep.m b/src/frameworks/MapKit/src/MKRouteStep.m new file mode 100644 index 000000000..d335258f8 --- /dev/null +++ b/src/frameworks/MapKit/src/MKRouteStep.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 MKRouteStep + +- (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/MapKit/src/MKRouteStepPolyline.m b/src/frameworks/MapKit/src/MKRouteStepPolyline.m new file mode 100644 index 000000000..65e4f67fa --- /dev/null +++ b/src/frameworks/MapKit/src/MKRouteStepPolyline.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 MKRouteStepPolyline + +- (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/MapKit/src/MKRouteTextActivityProvider.m b/src/frameworks/MapKit/src/MKRouteTextActivityProvider.m new file mode 100644 index 000000000..00aecd099 --- /dev/null +++ b/src/frameworks/MapKit/src/MKRouteTextActivityProvider.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 MKRouteTextActivityProvider + +- (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/MapKit/src/MKRouteURLActivityProvider.m b/src/frameworks/MapKit/src/MKRouteURLActivityProvider.m new file mode 100644 index 000000000..af2de6932 --- /dev/null +++ b/src/frameworks/MapKit/src/MKRouteURLActivityProvider.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 MKRouteURLActivityProvider + +- (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/MapKit/src/MKScaleView.m b/src/frameworks/MapKit/src/MKScaleView.m new file mode 100644 index 000000000..f8231eadd --- /dev/null +++ b/src/frameworks/MapKit/src/MKScaleView.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 MKScaleView + +- (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/MapKit/src/MKSearchCompletion.m b/src/frameworks/MapKit/src/MKSearchCompletion.m new file mode 100644 index 000000000..0c5521126 --- /dev/null +++ b/src/frameworks/MapKit/src/MKSearchCompletion.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 MKSearchCompletion + +- (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/MapKit/src/MKSeparator.m b/src/frameworks/MapKit/src/MKSeparator.m new file mode 100644 index 000000000..cdc4ba3f3 --- /dev/null +++ b/src/frameworks/MapKit/src/MKSeparator.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 MKSeparator + +- (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/MapKit/src/MKServerFormattedString.m b/src/frameworks/MapKit/src/MKServerFormattedString.m new file mode 100644 index 000000000..d03efe696 --- /dev/null +++ b/src/frameworks/MapKit/src/MKServerFormattedString.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 MKServerFormattedString + +- (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/MapKit/src/MKServerFormattedStringParameters.m b/src/frameworks/MapKit/src/MKServerFormattedStringParameters.m new file mode 100644 index 000000000..4fee9cda6 --- /dev/null +++ b/src/frameworks/MapKit/src/MKServerFormattedStringParameters.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 MKServerFormattedStringParameters + +- (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/MapKit/src/MKServiceHoursRow.m b/src/frameworks/MapKit/src/MKServiceHoursRow.m new file mode 100644 index 000000000..a45493cb9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKServiceHoursRow.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 MKServiceHoursRow + +- (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/MapKit/src/MKShape.m b/src/frameworks/MapKit/src/MKShape.m new file mode 100644 index 000000000..00e30ff24 --- /dev/null +++ b/src/frameworks/MapKit/src/MKShape.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 MKShape + +- (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/MapKit/src/MKSharingController.m b/src/frameworks/MapKit/src/MKSharingController.m new file mode 100644 index 000000000..4c88aeb58 --- /dev/null +++ b/src/frameworks/MapKit/src/MKSharingController.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 MKSharingController + +- (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/MapKit/src/MKSizedTransitArtwork.m b/src/frameworks/MapKit/src/MKSizedTransitArtwork.m new file mode 100644 index 000000000..d01d1cf41 --- /dev/null +++ b/src/frameworks/MapKit/src/MKSizedTransitArtwork.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 MKSizedTransitArtwork + +- (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/MapKit/src/MKSmallCalloutView.m b/src/frameworks/MapKit/src/MKSmallCalloutView.m new file mode 100644 index 000000000..62035cb0a --- /dev/null +++ b/src/frameworks/MapKit/src/MKSmallCalloutView.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 MKSmallCalloutView + +- (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/MapKit/src/MKSpatialCollider.m b/src/frameworks/MapKit/src/MKSpatialCollider.m new file mode 100644 index 000000000..7b1789db8 --- /dev/null +++ b/src/frameworks/MapKit/src/MKSpatialCollider.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 MKSpatialCollider + +- (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/MapKit/src/MKStackingViewController.m b/src/frameworks/MapKit/src/MKStackingViewController.m new file mode 100644 index 000000000..ca1bb9b82 --- /dev/null +++ b/src/frameworks/MapKit/src/MKStackingViewController.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 MKStackingViewController + +- (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/MapKit/src/MKStandardCalloutView.m b/src/frameworks/MapKit/src/MKStandardCalloutView.m new file mode 100644 index 000000000..6b6790d3f --- /dev/null +++ b/src/frameworks/MapKit/src/MKStandardCalloutView.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 MKStandardCalloutView + +- (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/MapKit/src/MKStarRatingAndLabelView.m b/src/frameworks/MapKit/src/MKStarRatingAndLabelView.m new file mode 100644 index 000000000..aed6380b0 --- /dev/null +++ b/src/frameworks/MapKit/src/MKStarRatingAndLabelView.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 MKStarRatingAndLabelView + +- (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/MapKit/src/MKStarRatingView.m b/src/frameworks/MapKit/src/MKStarRatingView.m new file mode 100644 index 000000000..1b7ccb346 --- /dev/null +++ b/src/frameworks/MapKit/src/MKStarRatingView.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 MKStarRatingView + +- (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/MapKit/src/MKSystemController.m b/src/frameworks/MapKit/src/MKSystemController.m new file mode 100644 index 000000000..8b72a8f83 --- /dev/null +++ b/src/frameworks/MapKit/src/MKSystemController.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 MKSystemController + +- (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/MapKit/src/MKTableViewCell.m b/src/frameworks/MapKit/src/MKTableViewCell.m new file mode 100644 index 000000000..511a29dcf --- /dev/null +++ b/src/frameworks/MapKit/src/MKTableViewCell.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 MKTableViewCell + +- (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/MapKit/src/MKThemeMultiPartLabel.m b/src/frameworks/MapKit/src/MKThemeMultiPartLabel.m new file mode 100644 index 000000000..eb046dd3c --- /dev/null +++ b/src/frameworks/MapKit/src/MKThemeMultiPartLabel.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 MKThemeMultiPartLabel + +- (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/MapKit/src/MKThreadContext.m b/src/frameworks/MapKit/src/MKThreadContext.m new file mode 100644 index 000000000..b5e71b6e2 --- /dev/null +++ b/src/frameworks/MapKit/src/MKThreadContext.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 MKThreadContext + +- (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/MapKit/src/MKThrottledGate.m b/src/frameworks/MapKit/src/MKThrottledGate.m new file mode 100644 index 000000000..250b2e24d --- /dev/null +++ b/src/frameworks/MapKit/src/MKThrottledGate.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 MKThrottledGate + +- (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/MapKit/src/MKTileOverlay.m b/src/frameworks/MapKit/src/MKTileOverlay.m new file mode 100644 index 000000000..658eb6358 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTileOverlay.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 MKTileOverlay + +- (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/MapKit/src/MKTileOverlayRenderer.m b/src/frameworks/MapKit/src/MKTileOverlayRenderer.m new file mode 100644 index 000000000..60c014019 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTileOverlayRenderer.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 MKTileOverlayRenderer + +- (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/MapKit/src/MKTileOverlayRequester.m b/src/frameworks/MapKit/src/MKTileOverlayRequester.m new file mode 100644 index 000000000..e02bbfc06 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTileOverlayRequester.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 MKTileOverlayRequester + +- (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/MapKit/src/MKTileOverlayRequesterOp.m b/src/frameworks/MapKit/src/MKTileOverlayRequesterOp.m new file mode 100644 index 000000000..09e7bfb12 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTileOverlayRequesterOp.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 MKTileOverlayRequesterOp + +- (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/MapKit/src/MKTileOverlayTile.m b/src/frameworks/MapKit/src/MKTileOverlayTile.m new file mode 100644 index 000000000..4cd5360d4 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTileOverlayTile.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 MKTileOverlayTile + +- (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/MapKit/src/MKToVKOverlayAdaptor.m b/src/frameworks/MapKit/src/MKToVKOverlayAdaptor.m new file mode 100644 index 000000000..d7ce4b11c --- /dev/null +++ b/src/frameworks/MapKit/src/MKToVKOverlayAdaptor.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 MKToVKOverlayAdaptor + +- (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/MapKit/src/MKTrafficSupport.m b/src/frameworks/MapKit/src/MKTrafficSupport.m new file mode 100644 index 000000000..646167b9e --- /dev/null +++ b/src/frameworks/MapKit/src/MKTrafficSupport.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 MKTrafficSupport + +- (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/MapKit/src/MKTrailingAlignedButton.m b/src/frameworks/MapKit/src/MKTrailingAlignedButton.m new file mode 100644 index 000000000..f80bf01aa --- /dev/null +++ b/src/frameworks/MapKit/src/MKTrailingAlignedButton.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 MKTrailingAlignedButton + +- (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/MapKit/src/MKTrailingAlignedButtonCell.m b/src/frameworks/MapKit/src/MKTrailingAlignedButtonCell.m new file mode 100644 index 000000000..79656ecdf --- /dev/null +++ b/src/frameworks/MapKit/src/MKTrailingAlignedButtonCell.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 MKTrailingAlignedButtonCell + +- (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/MapKit/src/MKTransitArtwork.m b/src/frameworks/MapKit/src/MKTransitArtwork.m new file mode 100644 index 000000000..0b35d8355 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitArtwork.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 MKTransitArtwork + +- (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/MapKit/src/MKTransitArtworkManager.m b/src/frameworks/MapKit/src/MKTransitArtworkManager.m new file mode 100644 index 000000000..de3c3221c --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitArtworkManager.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 MKTransitArtworkManager + +- (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/MapKit/src/MKTransitAttributionSummaryCell.m b/src/frameworks/MapKit/src/MKTransitAttributionSummaryCell.m new file mode 100644 index 000000000..41ce98b94 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitAttributionSummaryCell.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 MKTransitAttributionSummaryCell + +- (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/MapKit/src/MKTransitAttributionViewController.m b/src/frameworks/MapKit/src/MKTransitAttributionViewController.m new file mode 100644 index 000000000..a9cc1075d --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitAttributionViewController.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 MKTransitAttributionViewController + +- (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/MapKit/src/MKTransitDepartureServiceGapFormatter.m b/src/frameworks/MapKit/src/MKTransitDepartureServiceGapFormatter.m new file mode 100644 index 000000000..e1b1c7098 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitDepartureServiceGapFormatter.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 MKTransitDepartureServiceGapFormatter + +- (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/MapKit/src/MKTransitDepartureServiceGapFormatterResult.m b/src/frameworks/MapKit/src/MKTransitDepartureServiceGapFormatterResult.m new file mode 100644 index 000000000..8c46e7924 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitDepartureServiceGapFormatterResult.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 MKTransitDepartureServiceGapFormatterResult + +- (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/MapKit/src/MKTransitDeparturesCell.m b/src/frameworks/MapKit/src/MKTransitDeparturesCell.m new file mode 100644 index 000000000..07240c719 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitDeparturesCell.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 MKTransitDeparturesCell + +- (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/MapKit/src/MKTransitDeparturesSectionController.m b/src/frameworks/MapKit/src/MKTransitDeparturesSectionController.m new file mode 100644 index 000000000..e36aaf6bc --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitDeparturesSectionController.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 MKTransitDeparturesSectionController + +- (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/MapKit/src/MKTransitDeparturesSectionHeaderView.m b/src/frameworks/MapKit/src/MKTransitDeparturesSectionHeaderView.m new file mode 100644 index 000000000..49d4e8fe8 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitDeparturesSectionHeaderView.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 MKTransitDeparturesSectionHeaderView + +- (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/MapKit/src/MKTransitDeparturesViewController.m b/src/frameworks/MapKit/src/MKTransitDeparturesViewController.m new file mode 100644 index 000000000..6860352df --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitDeparturesViewController.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 MKTransitDeparturesViewController + +- (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/MapKit/src/MKTransitIcon.m b/src/frameworks/MapKit/src/MKTransitIcon.m new file mode 100644 index 000000000..30ac50130 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitIcon.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 MKTransitIcon + +- (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/MapKit/src/MKTransitInactiveLinesSectionController.m b/src/frameworks/MapKit/src/MKTransitInactiveLinesSectionController.m new file mode 100644 index 000000000..1d3f1b9bd --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitInactiveLinesSectionController.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 MKTransitInactiveLinesSectionController + +- (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/MapKit/src/MKTransitIncidentDetailCell.m b/src/frameworks/MapKit/src/MKTransitIncidentDetailCell.m new file mode 100644 index 000000000..382a29f17 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitIncidentDetailCell.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 MKTransitIncidentDetailCell + +- (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/MapKit/src/MKTransitIncidentStringProvider.m b/src/frameworks/MapKit/src/MKTransitIncidentStringProvider.m new file mode 100644 index 000000000..96dd78fc6 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitIncidentStringProvider.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 MKTransitIncidentStringProvider + +- (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/MapKit/src/MKTransitIncidentSummaryCell.m b/src/frameworks/MapKit/src/MKTransitIncidentSummaryCell.m new file mode 100644 index 000000000..b01cd994b --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitIncidentSummaryCell.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 MKTransitIncidentSummaryCell + +- (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/MapKit/src/MKTransitIncidentsViewController.m b/src/frameworks/MapKit/src/MKTransitIncidentsViewController.m new file mode 100644 index 000000000..9f69e1027 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitIncidentsViewController.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 MKTransitIncidentsViewController + +- (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/MapKit/src/MKTransitInfoLabelView.m b/src/frameworks/MapKit/src/MKTransitInfoLabelView.m new file mode 100644 index 000000000..174634c04 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitInfoLabelView.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 MKTransitInfoLabelView + +- (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/MapKit/src/MKTransitItemController.m b/src/frameworks/MapKit/src/MKTransitItemController.m new file mode 100644 index 000000000..7121dc8d0 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitItemController.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 MKTransitItemController + +- (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/MapKit/src/MKTransitItemIncidentCell.m b/src/frameworks/MapKit/src/MKTransitItemIncidentCell.m new file mode 100644 index 000000000..e9738cf22 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitItemIncidentCell.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 MKTransitItemIncidentCell + +- (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/MapKit/src/MKTransitItemIncidentsController.m b/src/frameworks/MapKit/src/MKTransitItemIncidentsController.m new file mode 100644 index 000000000..d16dfc751 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitItemIncidentsController.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 MKTransitItemIncidentsController + +- (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/MapKit/src/MKTransitLineIncidentsViewController.m b/src/frameworks/MapKit/src/MKTransitLineIncidentsViewController.m new file mode 100644 index 000000000..24cfe8f19 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitLineIncidentsViewController.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 MKTransitLineIncidentsViewController + +- (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/MapKit/src/MKTransitLineItemViewController.m b/src/frameworks/MapKit/src/MKTransitLineItemViewController.m new file mode 100644 index 000000000..2576799fd --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitLineItemViewController.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 MKTransitLineItemViewController + +- (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/MapKit/src/MKTransitLoadingTableViewCell.m b/src/frameworks/MapKit/src/MKTransitLoadingTableViewCell.m new file mode 100644 index 000000000..958eb6667 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitLoadingTableViewCell.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 MKTransitLoadingTableViewCell + +- (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/MapKit/src/MKTransitMessageCell.m b/src/frameworks/MapKit/src/MKTransitMessageCell.m new file mode 100644 index 000000000..2c0bbc193 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitMessageCell.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 MKTransitMessageCell + +- (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/MapKit/src/MKTransitSectionController.m b/src/frameworks/MapKit/src/MKTransitSectionController.m new file mode 100644 index 000000000..b27285936 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitSectionController.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 MKTransitSectionController + +- (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/MapKit/src/MKTransitSectionPagingFilter.m b/src/frameworks/MapKit/src/MKTransitSectionPagingFilter.m new file mode 100644 index 000000000..f84920223 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitSectionPagingFilter.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 MKTransitSectionPagingFilter + +- (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/MapKit/src/MKTransitShield.m b/src/frameworks/MapKit/src/MKTransitShield.m new file mode 100644 index 000000000..e5dbb232d --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitShield.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 MKTransitShield + +- (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/MapKit/src/MKTransitSystemCell.m b/src/frameworks/MapKit/src/MKTransitSystemCell.m new file mode 100644 index 000000000..105e98b91 --- /dev/null +++ b/src/frameworks/MapKit/src/MKTransitSystemCell.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 MKTransitSystemCell + +- (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/MapKit/src/MKUILabelNoAutoFontSmoothingBackground.m b/src/frameworks/MapKit/src/MKUILabelNoAutoFontSmoothingBackground.m new file mode 100644 index 000000000..1da7e8341 --- /dev/null +++ b/src/frameworks/MapKit/src/MKUILabelNoAutoFontSmoothingBackground.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 MKUILabelNoAutoFontSmoothingBackground + +- (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/MapKit/src/MKURLBuilder.m b/src/frameworks/MapKit/src/MKURLBuilder.m new file mode 100644 index 000000000..8accefae1 --- /dev/null +++ b/src/frameworks/MapKit/src/MKURLBuilder.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 MKURLBuilder + +- (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/MapKit/src/MKURLHandler.m b/src/frameworks/MapKit/src/MKURLHandler.m new file mode 100644 index 000000000..b91a4ea5d --- /dev/null +++ b/src/frameworks/MapKit/src/MKURLHandler.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 MKURLHandler + +- (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/MapKit/src/MKURLParser.m b/src/frameworks/MapKit/src/MKURLParser.m new file mode 100644 index 000000000..78a5c0f7a --- /dev/null +++ b/src/frameworks/MapKit/src/MKURLParser.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 MKURLParser + +- (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/MapKit/src/MKURLSerializer.m b/src/frameworks/MapKit/src/MKURLSerializer.m new file mode 100644 index 000000000..dc355ca74 --- /dev/null +++ b/src/frameworks/MapKit/src/MKURLSerializer.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 MKURLSerializer + +- (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/MapKit/src/MKUserLocation.m b/src/frameworks/MapKit/src/MKUserLocation.m new file mode 100644 index 000000000..05a42ed23 --- /dev/null +++ b/src/frameworks/MapKit/src/MKUserLocation.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 MKUserLocation + +- (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/MapKit/src/MKUserLocationAnnotation.m b/src/frameworks/MapKit/src/MKUserLocationAnnotation.m new file mode 100644 index 000000000..00884a2d9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKUserLocationAnnotation.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 MKUserLocationAnnotation + +- (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/MapKit/src/MKUserLocationAnnotationViewProxy.m b/src/frameworks/MapKit/src/MKUserLocationAnnotationViewProxy.m new file mode 100644 index 000000000..5c8e31b04 --- /dev/null +++ b/src/frameworks/MapKit/src/MKUserLocationAnnotationViewProxy.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 MKUserLocationAnnotationViewProxy + +- (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/MapKit/src/MKUserLocationInternal.m b/src/frameworks/MapKit/src/MKUserLocationInternal.m new file mode 100644 index 000000000..16e39d59d --- /dev/null +++ b/src/frameworks/MapKit/src/MKUserLocationInternal.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 MKUserLocationInternal + +- (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/MapKit/src/MKUserLocationView.m b/src/frameworks/MapKit/src/MKUserLocationView.m new file mode 100644 index 000000000..5b9764921 --- /dev/null +++ b/src/frameworks/MapKit/src/MKUserLocationView.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 MKUserLocationView + +- (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/MapKit/src/MKVibrancyAwareLabelView.m b/src/frameworks/MapKit/src/MKVibrancyAwareLabelView.m new file mode 100644 index 000000000..5a136ed0b --- /dev/null +++ b/src/frameworks/MapKit/src/MKVibrancyAwareLabelView.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 MKVibrancyAwareLabelView + +- (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/MapKit/src/MKViewWithHairline.m b/src/frameworks/MapKit/src/MKViewWithHairline.m new file mode 100644 index 000000000..fc3e74fd9 --- /dev/null +++ b/src/frameworks/MapKit/src/MKViewWithHairline.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 MKViewWithHairline + +- (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/MapKit/src/MKWalletMerchantLookupRequest.m b/src/frameworks/MapKit/src/MKWalletMerchantLookupRequest.m new file mode 100644 index 000000000..3b33cc308 --- /dev/null +++ b/src/frameworks/MapKit/src/MKWalletMerchantLookupRequest.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 MKWalletMerchantLookupRequest + +- (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/MapKit/src/MKWalletMerchantResponse.m b/src/frameworks/MapKit/src/MKWalletMerchantResponse.m new file mode 100644 index 000000000..fc2423cfa --- /dev/null +++ b/src/frameworks/MapKit/src/MKWalletMerchantResponse.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 MKWalletMerchantResponse + +- (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/MapKit/src/MKWalletMerchantStylingInfo.m b/src/frameworks/MapKit/src/MKWalletMerchantStylingInfo.m new file mode 100644 index 000000000..6b5fb54e5 --- /dev/null +++ b/src/frameworks/MapKit/src/MKWalletMerchantStylingInfo.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 MKWalletMerchantStylingInfo + +- (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/MapKit/src/MKWalletRAPReport.m b/src/frameworks/MapKit/src/MKWalletRAPReport.m new file mode 100644 index 000000000..9aa50b14d --- /dev/null +++ b/src/frameworks/MapKit/src/MKWalletRAPReport.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 MKWalletRAPReport + +- (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/MapKit/src/MKZoomSegmentedControl.m b/src/frameworks/MapKit/src/MKZoomSegmentedControl.m new file mode 100644 index 000000000..02d5f8340 --- /dev/null +++ b/src/frameworks/MapKit/src/MKZoomSegmentedControl.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 MKZoomSegmentedControl + +- (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/MapKit/src/MapKit.m b/src/frameworks/MapKit/src/MapKit.m new file mode 100644 index 000000000..6396f445a --- /dev/null +++ b/src/frameworks/MapKit/src/MapKit.m @@ -0,0 +1,894 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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* GEOGetMKIconManagerLog(void) +{ + if (verbose) puts("STUB: GEOGetMKIconManagerLog called"); + return NULL; +} + +void* ImageForShieldDataSourceTypeShouldBeFlipped(void) +{ + if (verbose) puts("STUB: ImageForShieldDataSourceTypeShouldBeFlipped called"); + return NULL; +} + +void* MKAddressDictionaryFromCLPlacemark(void) +{ + if (verbose) puts("STUB: MKAddressDictionaryFromCLPlacemark called"); + return NULL; +} + +void* MKAddressDictionaryFromContactsDictionary(void) +{ + if (verbose) puts("STUB: MKAddressDictionaryFromContactsDictionary called"); + return NULL; +} + +void* MKAddressDictionaryFromPostalAddress(void) +{ + if (verbose) puts("STUB: MKAddressDictionaryFromPostalAddress called"); + return NULL; +} + +void* MKAddressStringForAddressDictionary(void) +{ + if (verbose) puts("STUB: MKAddressStringForAddressDictionary called"); + return NULL; +} + +void* MKAnnotationViewIntersectionArea(void) +{ + if (verbose) puts("STUB: MKAnnotationViewIntersectionArea called"); + return NULL; +} + +void* MKAnnotationViewsIntersectionArea(void) +{ + if (verbose) puts("STUB: MKAnnotationViewsIntersectionArea called"); + return NULL; +} + +void* MKApplicationLayoutDirectionIsRightToLeft(void) +{ + if (verbose) puts("STUB: MKApplicationLayoutDirectionIsRightToLeft called"); + return NULL; +} + +void* MKArrowAppendArrowheadToPathAndReturnMetrics(void) +{ + if (verbose) puts("STUB: MKArrowAppendArrowheadToPathAndReturnMetrics called"); + return NULL; +} + +void* MKArrowAppendArrowheadToPathAndReturnMetricsWithStemAdjustment(void) +{ + if (verbose) puts("STUB: MKArrowAppendArrowheadToPathAndReturnMetricsWithStemAdjustment called"); + return NULL; +} + +void* MKArrowAppendCurveToPath(void) +{ + if (verbose) puts("STUB: MKArrowAppendCurveToPath called"); + return NULL; +} + +void* MKArrowAppendCurveToPathWithOptions(void) +{ + if (verbose) puts("STUB: MKArrowAppendCurveToPathWithOptions called"); + return NULL; +} + +void* MKArrowAppendCurveToPathWithOptionsAndRadius(void) +{ + if (verbose) puts("STUB: MKArrowAppendCurveToPathWithOptionsAndRadius called"); + return NULL; +} + +void* MKArrowAppendExitRoadLeftToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendExitRoadLeftToPathInRect called"); + return NULL; +} + +void* MKArrowAppendExitRoadRightToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendExitRoadRightToPathInRect called"); + return NULL; +} + +void* MKArrowAppendFinalSegmentToPath(void) +{ + if (verbose) puts("STUB: MKArrowAppendFinalSegmentToPath called"); + return NULL; +} + +void* MKArrowAppendInitialSegmentToPath(void) +{ + if (verbose) puts("STUB: MKArrowAppendInitialSegmentToPath called"); + return NULL; +} + +void* MKArrowAppendLeftTurnToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendLeftTurnToPathInRect called"); + return NULL; +} + +void* MKArrowAppendMergeLeftToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendMergeLeftToPathInRect called"); + return NULL; +} + +void* MKArrowAppendMergeRightToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendMergeRightToPathInRect called"); + return NULL; +} + +void* MKArrowAppendRightAngleCurveToPath(void) +{ + if (verbose) puts("STUB: MKArrowAppendRightAngleCurveToPath called"); + return NULL; +} + +void* MKArrowAppendRightTurnToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendRightTurnToPathInRect called"); + return NULL; +} + +void* MKArrowAppendSegmentToPath(void) +{ + if (verbose) puts("STUB: MKArrowAppendSegmentToPath called"); + return NULL; +} + +void* MKArrowAppendStraightArrowToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendStraightArrowToPathInRect called"); + return NULL; +} + +void* MKArrowAppendUTurnCurveToPath(void) +{ + if (verbose) puts("STUB: MKArrowAppendUTurnCurveToPath called"); + return NULL; +} + +void* MKArrowAppendUTurnToPathInRect(void) +{ + if (verbose) puts("STUB: MKArrowAppendUTurnToPathInRect called"); + return NULL; +} + +void* MKArrowCreateBezierPathsForArrivalWithSize(void) +{ + if (verbose) puts("STUB: MKArrowCreateBezierPathsForArrivalWithSize called"); + return NULL; +} + +void* MKArrowCreateBezierPathsForArrivalWithSizeAndReturnCenter(void) +{ + if (verbose) puts("STUB: MKArrowCreateBezierPathsForArrivalWithSizeAndReturnCenter called"); + return NULL; +} + +void* MKArrowCreateBezierPathsForEitherProceedToRouteOrArrivalWithSizeAndReturnCenter(void) +{ + if (verbose) puts("STUB: MKArrowCreateBezierPathsForEitherProceedToRouteOrArrivalWithSizeAndReturnCenter called"); + return NULL; +} + +void* MKArrowCreateBezierPathsForProceedToRouteWithSize(void) +{ + if (verbose) puts("STUB: MKArrowCreateBezierPathsForProceedToRouteWithSize called"); + return NULL; +} + +void* MKArrowCreateBezierPathsForProceedToRouteWithSizeAndReturnCenter(void) +{ + if (verbose) puts("STUB: MKArrowCreateBezierPathsForProceedToRouteWithSizeAndReturnCenter called"); + return NULL; +} + +void* MKBearingFromCoordinateToCoordinate(void) +{ + if (verbose) puts("STUB: MKBearingFromCoordinateToCoordinate called"); + return NULL; +} + +void* MKCalculateDistance(void) +{ + if (verbose) puts("STUB: MKCalculateDistance called"); + return NULL; +} + +void* MKCenterWithLayerPosition(void) +{ + if (verbose) puts("STUB: MKCenterWithLayerPosition called"); + return NULL; +} + +void* MKClosestMapPointInLineSegmentFromMapPoint(void) +{ + if (verbose) puts("STUB: MKClosestMapPointInLineSegmentFromMapPoint called"); + return NULL; +} + +void* MKCompassPointFromLocationDirection(void) +{ + if (verbose) puts("STUB: MKCompassPointFromLocationDirection called"); + return NULL; +} + +void* MKCoordinateForMapPoint(void) +{ + if (verbose) puts("STUB: MKCoordinateForMapPoint called"); + return NULL; +} + +void* MKCoordinateForTilePoint(void) +{ + if (verbose) puts("STUB: MKCoordinateForTilePoint called"); + return NULL; +} + +void* MKCoordinateRegionForMapRect(void) +{ + if (verbose) puts("STUB: MKCoordinateRegionForMapRect called"); + return NULL; +} + +void* MKCoordinateRegionMakeWithDistance(void) +{ + if (verbose) puts("STUB: MKCoordinateRegionMakeWithDistance called"); + return NULL; +} + +void* MKCoordinateRegionMakeWithZoomLevel(void) +{ + if (verbose) puts("STUB: MKCoordinateRegionMakeWithZoomLevel called"); + return NULL; +} + +void* MKCoordinatesForRegion(void) +{ + if (verbose) puts("STUB: MKCoordinatesForRegion called"); + return NULL; +} + +void* MKCurrentTransitConnectionFailureDiagnosis(void) +{ + if (verbose) puts("STUB: MKCurrentTransitConnectionFailureDiagnosis called"); + return NULL; +} + +void* MKDefaultCoordinateRegion(void) +{ + if (verbose) puts("STUB: MKDefaultCoordinateRegion called"); + return NULL; +} + +void* MKDefaultGuidanceManeuverMetrics(void) +{ + if (verbose) puts("STUB: MKDefaultGuidanceManeuverMetrics called"); + return NULL; +} + +void* MKDirectionBetween(void) +{ + if (verbose) puts("STUB: MKDirectionBetween called"); + return NULL; +} + +void* MKGetCenterForIntegralFrame(void) +{ + if (verbose) puts("STUB: MKGetCenterForIntegralFrame called"); + return NULL; +} + +void* MKGetMKDefaultLog(void) +{ + if (verbose) puts("STUB: MKGetMKDefaultLog called"); + return NULL; +} + +void* MKGetNextOrientation(void) +{ + if (verbose) puts("STUB: MKGetNextOrientation called"); + return NULL; +} + +void* MKGuidanceManeuverArrowMetricsApplyScale(void) +{ + if (verbose) puts("STUB: MKGuidanceManeuverArrowMetricsApplyScale called"); + return NULL; +} + +void* MKGuidanceManeuverArrowMetricsEqualToArrowMetrics(void) +{ + if (verbose) puts("STUB: MKGuidanceManeuverArrowMetricsEqualToArrowMetrics called"); + return NULL; +} + +void* MKIntegerHash(void) +{ + if (verbose) puts("STUB: MKIntegerHash called"); + return NULL; +} + +void* MKIntegralAnchorAdustedCenterForViewInView(void) +{ + if (verbose) puts("STUB: MKIntegralAnchorAdustedCenterForViewInView called"); + return NULL; +} + +void* MKIntegralCenterForLayer(void) +{ + if (verbose) puts("STUB: MKIntegralCenterForLayer called"); + return NULL; +} + +void* MKIntegralCenterForLayerWithScale(void) +{ + if (verbose) puts("STUB: MKIntegralCenterForLayerWithScale called"); + return NULL; +} + +void* MKIntegralCenterForView(void) +{ + if (verbose) puts("STUB: MKIntegralCenterForView called"); + return NULL; +} + +void* MKIntegralCenterForViewWithScale(void) +{ + if (verbose) puts("STUB: MKIntegralCenterForViewWithScale called"); + return NULL; +} + +void* MKIntegralPoint(void) +{ + if (verbose) puts("STUB: MKIntegralPoint called"); + return NULL; +} + +void* MKIsHostedInSiri(void) +{ + if (verbose) puts("STUB: MKIsHostedInSiri called"); + return NULL; +} + +void* MKKeyForTransitArtwork(void) +{ + if (verbose) puts("STUB: MKKeyForTransitArtwork called"); + return NULL; +} + +void* MKLayerPositionWithAnchoredPosition(void) +{ + if (verbose) puts("STUB: MKLayerPositionWithAnchoredPosition called"); + return NULL; +} + +void* MKLayerPositionWithCenter(void) +{ + if (verbose) puts("STUB: MKLayerPositionWithCenter called"); + return NULL; +} + +void* MKLayerTreeDescription(void) +{ + if (verbose) puts("STUB: MKLayerTreeDescription called"); + return NULL; +} + +void* MKLineIntersectsOriginCircle(void) +{ + if (verbose) puts("STUB: MKLineIntersectsOriginCircle called"); + return NULL; +} + +void* MKLocalSearchMetricsStatusForError(void) +{ + if (verbose) puts("STUB: MKLocalSearchMetricsStatusForError called"); + return NULL; +} + +void* MKLocalSearchMetricsStatusToKeypressStatus(void) +{ + if (verbose) puts("STUB: MKLocalSearchMetricsStatusToKeypressStatus called"); + return NULL; +} + +void* MKLocalizedAbbreviationForCompassPoint(void) +{ + if (verbose) puts("STUB: MKLocalizedAbbreviationForCompassPoint called"); + return NULL; +} + +void* MKLocalizedStringForUnknownLocation(void) +{ + if (verbose) puts("STUB: MKLocalizedStringForUnknownLocation called"); + return NULL; +} + +void* MKLongHash(void) +{ + if (verbose) puts("STUB: MKLongHash called"); + return NULL; +} + +void* MKMapItemIdentifierFromGEOPBTransitLine(void) +{ + if (verbose) puts("STUB: MKMapItemIdentifierFromGEOPBTransitLine called"); + return NULL; +} + +void* MKMapItemIdentifierFromGEOTransitLine(void) +{ + if (verbose) puts("STUB: MKMapItemIdentifierFromGEOTransitLine called"); + return NULL; +} + +void* MKMapItemIdentifiersArrayFromGEOMapItemIdentifiersArray(void) +{ + if (verbose) puts("STUB: MKMapItemIdentifiersArrayFromGEOMapItemIdentifiersArray called"); + return NULL; +} + +void* MKMapItemIdentifiersArrayToGEOMapItemIdentifiersArray(void) +{ + if (verbose) puts("STUB: MKMapItemIdentifiersArrayToGEOMapItemIdentifiersArray called"); + return NULL; +} + +void* MKMapItemIdentifiersToGEOMapItemIdentifier(void) +{ + if (verbose) puts("STUB: MKMapItemIdentifiersToGEOMapItemIdentifier called"); + return NULL; +} + +void* MKMapPointForCoordinate(void) +{ + if (verbose) puts("STUB: MKMapPointForCoordinate called"); + return NULL; +} + +void* MKMapPointsPerMeterAtLatitude(void) +{ + if (verbose) puts("STUB: MKMapPointsPerMeterAtLatitude called"); + return NULL; +} + +void* MKMapRectBoundingMapPoints(void) +{ + if (verbose) puts("STUB: MKMapRectBoundingMapPoints called"); + return NULL; +} + +void* MKMapRectContainsPoint(void) +{ + if (verbose) puts("STUB: MKMapRectContainsPoint called"); + return NULL; +} + +void* MKMapRectContainsRect(void) +{ + if (verbose) puts("STUB: MKMapRectContainsRect called"); + return NULL; +} + +void* MKMapRectContainsRectWrappingMeridian(void) +{ + if (verbose) puts("STUB: MKMapRectContainsRectWrappingMeridian called"); + return NULL; +} + +void* MKMapRectDivide(void) +{ + if (verbose) puts("STUB: MKMapRectDivide called"); + return NULL; +} + +void* MKMapRectForCoordinateRegion(void) +{ + if (verbose) puts("STUB: MKMapRectForCoordinateRegion called"); + return NULL; +} + +void* MKMapRectInset(void) +{ + if (verbose) puts("STUB: MKMapRectInset called"); + return NULL; +} + +void* MKMapRectIntersection(void) +{ + if (verbose) puts("STUB: MKMapRectIntersection called"); + return NULL; +} + +void* MKMapRectIntersectsMapRectWrappingMeridian(void) +{ + if (verbose) puts("STUB: MKMapRectIntersectsMapRectWrappingMeridian called"); + return NULL; +} + +void* MKMapRectIntersectsRect(void) +{ + if (verbose) puts("STUB: MKMapRectIntersectsRect called"); + return NULL; +} + +void* MKMapRectMakeWithRadialDistance(void) +{ + if (verbose) puts("STUB: MKMapRectMakeWithRadialDistance called"); + return NULL; +} + +void* MKMapRectOffset(void) +{ + if (verbose) puts("STUB: MKMapRectOffset called"); + return NULL; +} + +void* MKMapRectRemainder(void) +{ + if (verbose) puts("STUB: MKMapRectRemainder called"); + return NULL; +} + +void* MKMapRectSpans180thMeridian(void) +{ + if (verbose) puts("STUB: MKMapRectSpans180thMeridian called"); + return NULL; +} + +void* MKMapRectUnion(void) +{ + if (verbose) puts("STUB: MKMapRectUnion called"); + return NULL; +} + +void* MKMappedABCNDictionary(void) +{ + if (verbose) puts("STUB: MKMappedABCNDictionary called"); + return NULL; +} + +void* MKMetersBetweenMapPoints(void) +{ + if (verbose) puts("STUB: MKMetersBetweenMapPoints called"); + return NULL; +} + +void* MKMetersPerMapPointAtLatitude(void) +{ + if (verbose) puts("STUB: MKMetersPerMapPointAtLatitude called"); + return NULL; +} + +void* MKNormalizedPointForLayer(void) +{ + if (verbose) puts("STUB: MKNormalizedPointForLayer called"); + return NULL; +} + +void* MKPrepareMultiLineLabelContainerForWidth(void) +{ + if (verbose) puts("STUB: MKPrepareMultiLineLabelContainerForWidth called"); + return NULL; +} + +void* MKRectToLineSegments(void) +{ + if (verbose) puts("STUB: MKRectToLineSegments called"); + return NULL; +} + +void* MKRectWithPoints(void) +{ + if (verbose) puts("STUB: MKRectWithPoints called"); + return NULL; +} + +void* MKRoadWidthAtZoomScale(void) +{ + if (verbose) puts("STUB: MKRoadWidthAtZoomScale called"); + return NULL; +} + +void* MKTilePointForCoordinate(void) +{ + if (verbose) puts("STUB: MKTilePointForCoordinate called"); + return NULL; +} + +void* MKTmpUserTrip(void) +{ + if (verbose) puts("STUB: MKTmpUserTrip called"); + return NULL; +} + +void* MKTransitArtworkImageConstrainedToWidth(void) +{ + if (verbose) puts("STUB: MKTransitArtworkImageConstrainedToWidth called"); + return NULL; +} + +void* MKTransitIncidentIcon(void) +{ + if (verbose) puts("STUB: MKTransitIncidentIcon called"); + return NULL; +} + +void* MKTripRecording(void) +{ + if (verbose) puts("STUB: MKTripRecording called"); + return NULL; +} + +void* MKUnNormalizedPointForLayer(void) +{ + if (verbose) puts("STUB: MKUnNormalizedPointForLayer called"); + return NULL; +} + +void* MKZoomScaleForZoomLevelF(void) +{ + if (verbose) puts("STUB: MKZoomScaleForZoomLevelF called"); + return NULL; +} + +void* _MKIsRunningInExtension(void) +{ + if (verbose) puts("STUB: _MKIsRunningInExtension called"); + return NULL; +} + +void* _MKLinkedOnOrAfterReleaseSet(void) +{ + if (verbose) puts("STUB: _MKLinkedOnOrAfterReleaseSet called"); + return NULL; +} + +void* _MKMapRectThatFits(void) +{ + if (verbose) puts("STUB: _MKMapRectThatFits called"); + return NULL; +} + +void* _MKPlaceCardButtonsAreFullWidth(void) +{ + if (verbose) puts("STUB: _MKPlaceCardButtonsAreFullWidth called"); + return NULL; +} + +void* _MKPlaceCardFormattedStringForTimeInterval(void) +{ + if (verbose) puts("STUB: _MKPlaceCardFormattedStringForTimeInterval called"); + return NULL; +} + +void* _MKPlaceCardUseSmallerFont(void) +{ + if (verbose) puts("STUB: _MKPlaceCardUseSmallerFont called"); + return NULL; +} + +void* _MKRAPIsAvailable(void) +{ + if (verbose) puts("STUB: _MKRAPIsAvailable called"); + return NULL; +} + +void* _MKSiriLanguageIsRTLFn(void) +{ + if (verbose) puts("STUB: _MKSiriLanguageIsRTLFn called"); + return NULL; +} + +void* _MKTransitIncidentImage(void) +{ + if (verbose) puts("STUB: _MKTransitIncidentImage called"); + return NULL; +} + +void* _Z10_splitNodeP14MKQuadTrieNodeP10MKQuadTrie(void) +{ + if (verbose) puts("STUB: _Z10_splitNodeP14MKQuadTrieNodeP10MKQuadTrie called"); + return NULL; +} + +void* _Z16MKMapRectLEQSize9MKMapRect9MKMapSize(void) +{ + if (verbose) puts("STUB: _Z16MKMapRectLEQSize9MKMapRect9MKMapSize called"); + return NULL; +} + +void* _Z16_depthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E(void) +{ + if (verbose) puts("STUB: _Z16_depthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E called"); + return NULL; +} + +void* _Z17__depthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E(void) +{ + if (verbose) puts("STUB: _Z17__depthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E called"); + return NULL; +} + +void* _Z18MKQuadTrieNodeFreeP14MKQuadTrieNode(void) +{ + if (verbose) puts("STUB: _Z18MKQuadTrieNodeFreeP14MKQuadTrieNode called"); + return NULL; +} + +void* _Z18MKQuadTrieNodeMake9MKMapRect(void) +{ + if (verbose) puts("STUB: _Z18MKQuadTrieNodeMake9MKMapRect called"); + return NULL; +} + +void* _Z18_breadthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E(void) +{ + if (verbose) puts("STUB: _Z18_breadthFirstApplyP14MKQuadTrieNodeU13block_pointerF28MKQuadTrieTraversalDirectiveS0_E called"); + return NULL; +} + +void* _Z21_insertionNodeForItemPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode(void) +{ + if (verbose) puts("STUB: _Z21_insertionNodeForItemPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode called"); + return NULL; +} + +void* _Z24MKStringFromQuadTrieNodeP14MKQuadTrieNode(void) +{ + if (verbose) puts("STUB: _Z24MKStringFromQuadTrieNodeP14MKQuadTrieNode called"); + return NULL; +} + +void* _Z7_insertPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNodeP10MKQuadTrie(void) +{ + if (verbose) puts("STUB: _Z7_insertPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNodeP10MKQuadTrie called"); + return NULL; +} + +void* _Z7_removePU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode(void) +{ + if (verbose) puts("STUB: _Z7_removePU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode called"); + return NULL; +} + +void* _Z9_containsPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode(void) +{ + if (verbose) puts("STUB: _Z9_containsPU23objcproto12MKAnnotation11objc_objectP14MKQuadTrieNode called"); + return NULL; +} + +void* _ZN3URS22shareSectionsForRoutesERKNSt3__16vectorIU8__strongP16GEOComposedRouteNS0_9allocatorIS4_EEEE(void) +{ + if (verbose) puts("STUB: _ZN3URS22shareSectionsForRoutesERKNSt3__16vectorIU8__strongP16GEOComposedRouteNS0_9allocatorIS4_EEEE called"); + return NULL; +} + +void* _notifyCenterOffsetChanged(void) +{ + if (verbose) puts("STUB: _notifyCenterOffsetChanged called"); + return NULL; +} + +void* _performOnMainThreadIfPossible(void) +{ + if (verbose) puts("STUB: _performOnMainThreadIfPossible called"); + return NULL; +} + +void* _scaleForMapRect(void) +{ + if (verbose) puts("STUB: _scaleForMapRect called"); + return NULL; +} + +void* mt_log_mapkit_usemap(void) +{ + if (verbose) puts("STUB: mt_log_mapkit_usemap called"); + return NULL; +} + +void* mt_log_maps_bookmarked(void) +{ + if (verbose) puts("STUB: mt_log_maps_bookmarked called"); + return NULL; +} + +void* mt_log_maps_gesture(void) +{ + if (verbose) puts("STUB: mt_log_maps_gesture called"); + return NULL; +} + +void* mt_log_maps_mode_switch(void) +{ + if (verbose) puts("STUB: mt_log_maps_mode_switch called"); + return NULL; +} + +void* mt_log_maps_mode_time(void) +{ + if (verbose) puts("STUB: mt_log_maps_mode_time called"); + return NULL; +} + +void* mt_log_maps_opened(void) +{ + if (verbose) puts("STUB: mt_log_maps_opened called"); + return NULL; +} + +void* mt_log_maps_printed(void) +{ + if (verbose) puts("STUB: mt_log_maps_printed called"); + return NULL; +} + +void* mt_log_maps_reportproblem(void) +{ + if (verbose) puts("STUB: mt_log_maps_reportproblem called"); + return NULL; +} + +void* mt_log_maps_shared_to(void) +{ + if (verbose) puts("STUB: mt_log_maps_shared_to called"); + return NULL; +} + +void* mt_log_maps_usemapkitmap(void) +{ + if (verbose) puts("STUB: mt_log_maps_usemapkitmap called"); + return NULL; +} + +void* mt_log_usedirections(void) +{ + if (verbose) puts("STUB: mt_log_usedirections called"); + return NULL; +} + +void* mt_signature_for_map_type(void) +{ + if (verbose) puts("STUB: mt_signature_for_map_type called"); + return NULL; +} diff --git a/src/frameworks/MapKit/src/NVAttributeAttachmentCell.m b/src/frameworks/MapKit/src/NVAttributeAttachmentCell.m new file mode 100644 index 000000000..128ebe57d --- /dev/null +++ b/src/frameworks/MapKit/src/NVAttributeAttachmentCell.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 NVAttributeAttachmentCell + +- (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/MapKit/src/NVMapScaleSegment.m b/src/frameworks/MapKit/src/NVMapScaleSegment.m new file mode 100644 index 000000000..f2bf6e5a2 --- /dev/null +++ b/src/frameworks/MapKit/src/NVMapScaleSegment.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 NVMapScaleSegment + +- (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/MapKit/src/_GEOTransitLineMarker.m b/src/frameworks/MapKit/src/_GEOTransitLineMarker.m new file mode 100644 index 000000000..57be5d968 --- /dev/null +++ b/src/frameworks/MapKit/src/_GEOTransitLineMarker.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 _GEOTransitLineMarker + +- (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/MapKit/src/_MKAnnotationDragGestureRecognizer.m b/src/frameworks/MapKit/src/_MKAnnotationDragGestureRecognizer.m new file mode 100644 index 000000000..588f23e7b --- /dev/null +++ b/src/frameworks/MapKit/src/_MKAnnotationDragGestureRecognizer.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 _MKAnnotationDragGestureRecognizer + +- (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/MapKit/src/_MKAnnotationViewAnchor.m b/src/frameworks/MapKit/src/_MKAnnotationViewAnchor.m new file mode 100644 index 000000000..e4c655354 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKAnnotationViewAnchor.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 _MKAnnotationViewAnchor + +- (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/MapKit/src/_MKAnnotationViewCustomFeatureAnnotation.m b/src/frameworks/MapKit/src/_MKAnnotationViewCustomFeatureAnnotation.m new file mode 100644 index 000000000..1930e332c --- /dev/null +++ b/src/frameworks/MapKit/src/_MKAnnotationViewCustomFeatureAnnotation.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 _MKAnnotationViewCustomFeatureAnnotation + +- (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/MapKit/src/_MKAppImageManagerContainer.m b/src/frameworks/MapKit/src/_MKAppImageManagerContainer.m new file mode 100644 index 000000000..c5564190b --- /dev/null +++ b/src/frameworks/MapKit/src/_MKAppImageManagerContainer.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 _MKAppImageManagerContainer + +- (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/MapKit/src/_MKBalloonCalloutView.m b/src/frameworks/MapKit/src/_MKBalloonCalloutView.m new file mode 100644 index 000000000..cc8dede10 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKBalloonCalloutView.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 _MKBalloonCalloutView + +- (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/MapKit/src/_MKBalloonContainerView.m b/src/frameworks/MapKit/src/_MKBalloonContainerView.m new file mode 100644 index 000000000..59d0e7d90 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKBalloonContainerView.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 _MKBalloonContainerView + +- (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/MapKit/src/_MKBalloonLabelMarkerView.m b/src/frameworks/MapKit/src/_MKBalloonLabelMarkerView.m new file mode 100644 index 000000000..726497c4c --- /dev/null +++ b/src/frameworks/MapKit/src/_MKBalloonLabelMarkerView.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 _MKBalloonLabelMarkerView + +- (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/MapKit/src/_MKCalloutAccessoryWrapperView.m b/src/frameworks/MapKit/src/_MKCalloutAccessoryWrapperView.m new file mode 100644 index 000000000..def9ebfbe --- /dev/null +++ b/src/frameworks/MapKit/src/_MKCalloutAccessoryWrapperView.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 _MKCalloutAccessoryWrapperView + +- (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/MapKit/src/_MKCalloutContentView.m b/src/frameworks/MapKit/src/_MKCalloutContentView.m new file mode 100644 index 000000000..1c08ca2b4 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKCalloutContentView.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 _MKCalloutContentView + +- (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/MapKit/src/_MKCalloutDetailWrapperView.m b/src/frameworks/MapKit/src/_MKCalloutDetailWrapperView.m new file mode 100644 index 000000000..d5eac0a0a --- /dev/null +++ b/src/frameworks/MapKit/src/_MKCalloutDetailWrapperView.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 _MKCalloutDetailWrapperView + +- (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/MapKit/src/_MKCalloutLayer.m b/src/frameworks/MapKit/src/_MKCalloutLayer.m new file mode 100644 index 000000000..a3d93e528 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKCalloutLayer.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 _MKCalloutLayer + +- (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/MapKit/src/_MKCategoriesTicket.m b/src/frameworks/MapKit/src/_MKCategoriesTicket.m new file mode 100644 index 000000000..1eecba302 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKCategoriesTicket.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 _MKCategoriesTicket + +- (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/MapKit/src/_MKClickableTableView.m b/src/frameworks/MapKit/src/_MKClickableTableView.m new file mode 100644 index 000000000..bf67de7bf --- /dev/null +++ b/src/frameworks/MapKit/src/_MKClickableTableView.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 _MKClickableTableView + +- (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/MapKit/src/_MKClickableTableViewController.m b/src/frameworks/MapKit/src/_MKClickableTableViewController.m new file mode 100644 index 000000000..41ae1ba7d --- /dev/null +++ b/src/frameworks/MapKit/src/_MKClickableTableViewController.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 _MKClickableTableViewController + +- (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/MapKit/src/_MKConditionalPanGestureRecognizer.m b/src/frameworks/MapKit/src/_MKConditionalPanGestureRecognizer.m new file mode 100644 index 000000000..2b413329f --- /dev/null +++ b/src/frameworks/MapKit/src/_MKConditionalPanGestureRecognizer.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 _MKConditionalPanGestureRecognizer + +- (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/MapKit/src/_MKContactPlaceItem.m b/src/frameworks/MapKit/src/_MKContactPlaceItem.m new file mode 100644 index 000000000..940c26103 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKContactPlaceItem.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 _MKContactPlaceItem + +- (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/MapKit/src/_MKCustomFeatureStore.m b/src/frameworks/MapKit/src/_MKCustomFeatureStore.m new file mode 100644 index 000000000..e896ddb76 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKCustomFeatureStore.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 _MKCustomFeatureStore + +- (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/MapKit/src/_MKDataHeaderModel.m b/src/frameworks/MapKit/src/_MKDataHeaderModel.m new file mode 100644 index 000000000..f3601f47f --- /dev/null +++ b/src/frameworks/MapKit/src/_MKDataHeaderModel.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 _MKDataHeaderModel + +- (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/MapKit/src/_MKDirectionalArrowRecognizer.m b/src/frameworks/MapKit/src/_MKDirectionalArrowRecognizer.m new file mode 100644 index 000000000..ae6c28c20 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKDirectionalArrowRecognizer.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 _MKDirectionalArrowRecognizer + +- (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/MapKit/src/_MKDirectionalPanGestureRecognizer.m b/src/frameworks/MapKit/src/_MKDirectionalPanGestureRecognizer.m new file mode 100644 index 000000000..ce797b8d5 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKDirectionalPanGestureRecognizer.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 _MKDirectionalPanGestureRecognizer + +- (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/MapKit/src/_MKDistanceDetailProvider.m b/src/frameworks/MapKit/src/_MKDistanceDetailProvider.m new file mode 100644 index 000000000..694590b34 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKDistanceDetailProvider.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 _MKDistanceDetailProvider + +- (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/MapKit/src/_MKEnvironmentLabel.m b/src/frameworks/MapKit/src/_MKEnvironmentLabel.m new file mode 100644 index 000000000..8b521af1d --- /dev/null +++ b/src/frameworks/MapKit/src/_MKEnvironmentLabel.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 _MKEnvironmentLabel + +- (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/MapKit/src/_MKFakeNil.m b/src/frameworks/MapKit/src/_MKFakeNil.m new file mode 100644 index 000000000..4a6ddb377 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKFakeNil.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 _MKFakeNil + +- (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/MapKit/src/_MKGemUserLocationView.m b/src/frameworks/MapKit/src/_MKGemUserLocationView.m new file mode 100644 index 000000000..3d1ab69b6 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKGemUserLocationView.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 _MKGemUserLocationView + +- (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/MapKit/src/_MKIconDiskCache.m b/src/frameworks/MapKit/src/_MKIconDiskCache.m new file mode 100644 index 000000000..4b493167c --- /dev/null +++ b/src/frameworks/MapKit/src/_MKIconDiskCache.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 _MKIconDiskCache + +- (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/MapKit/src/_MKJunctionElement.m b/src/frameworks/MapKit/src/_MKJunctionElement.m new file mode 100644 index 000000000..2c8b2dc0f --- /dev/null +++ b/src/frameworks/MapKit/src/_MKJunctionElement.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 _MKJunctionElement + +- (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/MapKit/src/_MKKVOProxy.m b/src/frameworks/MapKit/src/_MKKVOProxy.m new file mode 100644 index 000000000..4b47a78ae --- /dev/null +++ b/src/frameworks/MapKit/src/_MKKVOProxy.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 _MKKVOProxy + +- (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/MapKit/src/_MKLabelMarkerItem.m b/src/frameworks/MapKit/src/_MKLabelMarkerItem.m new file mode 100644 index 000000000..f34f86aa0 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLabelMarkerItem.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 _MKLabelMarkerItem + +- (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/MapKit/src/_MKLabelMarkerView.m b/src/frameworks/MapKit/src/_MKLabelMarkerView.m new file mode 100644 index 000000000..aea8ab5ef --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLabelMarkerView.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 _MKLabelMarkerView + +- (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/MapKit/src/_MKLeadingAlignedButton.m b/src/frameworks/MapKit/src/_MKLeadingAlignedButton.m new file mode 100644 index 000000000..bf3efbb26 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLeadingAlignedButton.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 _MKLeadingAlignedButton + +- (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/MapKit/src/_MKLeadingAlignedButtonCell.m b/src/frameworks/MapKit/src/_MKLeadingAlignedButtonCell.m new file mode 100644 index 000000000..de4acf58c --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLeadingAlignedButtonCell.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 _MKLeadingAlignedButtonCell + +- (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/MapKit/src/_MKLineHeaderModel.m b/src/frameworks/MapKit/src/_MKLineHeaderModel.m new file mode 100644 index 000000000..e5c972fda --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLineHeaderModel.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 _MKLineHeaderModel + +- (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/MapKit/src/_MKLocalSearchExternalTransitLookupParameters.m b/src/frameworks/MapKit/src/_MKLocalSearchExternalTransitLookupParameters.m new file mode 100644 index 000000000..2484cb858 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLocalSearchExternalTransitLookupParameters.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 _MKLocalSearchExternalTransitLookupParameters + +- (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/MapKit/src/_MKLocalSearchMerchantParameters.m b/src/frameworks/MapKit/src/_MKLocalSearchMerchantParameters.m new file mode 100644 index 000000000..e20d176d1 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLocalSearchMerchantParameters.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 _MKLocalSearchMerchantParameters + +- (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/MapKit/src/_MKLocalizedHoursBuilder.m b/src/frameworks/MapKit/src/_MKLocalizedHoursBuilder.m new file mode 100644 index 000000000..4cdd74238 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLocalizedHoursBuilder.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 _MKLocalizedHoursBuilder + +- (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/MapKit/src/_MKLocationShifter.m b/src/frameworks/MapKit/src/_MKLocationShifter.m new file mode 100644 index 000000000..3ae391cf1 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKLocationShifter.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 _MKLocationShifter + +- (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/MapKit/src/_MKMagnificationGestureRecognizer.m b/src/frameworks/MapKit/src/_MKMagnificationGestureRecognizer.m new file mode 100644 index 000000000..0aa41d194 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMagnificationGestureRecognizer.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 _MKMagnificationGestureRecognizer + +- (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/MapKit/src/_MKMapItemAttribution.m b/src/frameworks/MapKit/src/_MKMapItemAttribution.m new file mode 100644 index 000000000..ed76a0a0d --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemAttribution.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 _MKMapItemAttribution + +- (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/MapKit/src/_MKMapItemPhotosAttribution.m b/src/frameworks/MapKit/src/_MKMapItemPhotosAttribution.m new file mode 100644 index 000000000..a5654c309 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemPhotosAttribution.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 _MKMapItemPhotosAttribution + +- (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/MapKit/src/_MKMapItemPlaceAttribution.m b/src/frameworks/MapKit/src/_MKMapItemPlaceAttribution.m new file mode 100644 index 000000000..4417bb1ee --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemPlaceAttribution.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 _MKMapItemPlaceAttribution + +- (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/MapKit/src/_MKMapItemPlaceItem.m b/src/frameworks/MapKit/src/_MKMapItemPlaceItem.m new file mode 100644 index 000000000..f97b1ff08 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemPlaceItem.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 _MKMapItemPlaceItem + +- (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/MapKit/src/_MKMapItemReviewsAttribution.m b/src/frameworks/MapKit/src/_MKMapItemReviewsAttribution.m new file mode 100644 index 000000000..612a55738 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemReviewsAttribution.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 _MKMapItemReviewsAttribution + +- (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/MapKit/src/_MKMapItemUserRatingSnippetReview.m b/src/frameworks/MapKit/src/_MKMapItemUserRatingSnippetReview.m new file mode 100644 index 000000000..d6ac7f4c3 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemUserRatingSnippetReview.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 _MKMapItemUserRatingSnippetReview + +- (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/MapKit/src/_MKMapItemUserRatingSnippetTip.m b/src/frameworks/MapKit/src/_MKMapItemUserRatingSnippetTip.m new file mode 100644 index 000000000..56828f35c --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapItemUserRatingSnippetTip.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 _MKMapItemUserRatingSnippetTip + +- (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/MapKit/src/_MKMapViewSuspendedEffectsToken.m b/src/frameworks/MapKit/src/_MKMapViewSuspendedEffectsToken.m new file mode 100644 index 000000000..ff1dafb12 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMapViewSuspendedEffectsToken.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 _MKMapViewSuspendedEffectsToken + +- (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/MapKit/src/_MKMouseDownGestureRecognizer.m b/src/frameworks/MapKit/src/_MKMouseDownGestureRecognizer.m new file mode 100644 index 000000000..c2291e89a --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMouseDownGestureRecognizer.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 _MKMouseDownGestureRecognizer + +- (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/MapKit/src/_MKMultiPartLabelCacheKey.m b/src/frameworks/MapKit/src/_MKMultiPartLabelCacheKey.m new file mode 100644 index 000000000..0a7fd9341 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMultiPartLabelCacheKey.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 _MKMultiPartLabelCacheKey + +- (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/MapKit/src/_MKMultiPartLabelMetrics.m b/src/frameworks/MapKit/src/_MKMultiPartLabelMetrics.m new file mode 100644 index 000000000..6f4f1f2ac --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMultiPartLabelMetrics.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 _MKMultiPartLabelMetrics + +- (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/MapKit/src/_MKMultiPartStringComponent.m b/src/frameworks/MapKit/src/_MKMultiPartStringComponent.m new file mode 100644 index 000000000..ecc042d88 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKMultiPartStringComponent.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 _MKMultiPartStringComponent + +- (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/MapKit/src/_MKPinAnnotationViewImageCache.m b/src/frameworks/MapKit/src/_MKPinAnnotationViewImageCache.m new file mode 100644 index 000000000..da7ca3a0f --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPinAnnotationViewImageCache.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 _MKPinAnnotationViewImageCache + +- (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/MapKit/src/_MKPinAnnotationViewImageCacheKey.m b/src/frameworks/MapKit/src/_MKPinAnnotationViewImageCacheKey.m new file mode 100644 index 000000000..8f3726b33 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPinAnnotationViewImageCacheKey.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 _MKPinAnnotationViewImageCacheKey + +- (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/MapKit/src/_MKPlaceActionButtonController.m b/src/frameworks/MapKit/src/_MKPlaceActionButtonController.m new file mode 100644 index 000000000..f18cd9cbf --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceActionButtonController.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 _MKPlaceActionButtonController + +- (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/MapKit/src/_MKPlaceBusinessInfoItem.m b/src/frameworks/MapKit/src/_MKPlaceBusinessInfoItem.m new file mode 100644 index 000000000..d7d38401a --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceBusinessInfoItem.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 _MKPlaceBusinessInfoItem + +- (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/MapKit/src/_MKPlaceBusinessInfoRow.m b/src/frameworks/MapKit/src/_MKPlaceBusinessInfoRow.m new file mode 100644 index 000000000..4f985b3f3 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceBusinessInfoRow.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 _MKPlaceBusinessInfoRow + +- (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/MapKit/src/_MKPlaceInlineMapContentView.m b/src/frameworks/MapKit/src/_MKPlaceInlineMapContentView.m new file mode 100644 index 000000000..995c75077 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceInlineMapContentView.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 _MKPlaceInlineMapContentView + +- (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/MapKit/src/_MKPlaceInlineMapCustomFeature.m b/src/frameworks/MapKit/src/_MKPlaceInlineMapCustomFeature.m new file mode 100644 index 000000000..7360e17fc --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceInlineMapCustomFeature.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 _MKPlaceInlineMapCustomFeature + +- (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/MapKit/src/_MKPlacePoisInlineMapContentView.m b/src/frameworks/MapKit/src/_MKPlacePoisInlineMapContentView.m new file mode 100644 index 000000000..84bc2c607 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlacePoisInlineMapContentView.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 _MKPlacePoisInlineMapContentView + +- (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/MapKit/src/_MKPlaceReservationInfo.m b/src/frameworks/MapKit/src/_MKPlaceReservationInfo.m new file mode 100644 index 000000000..0617920e8 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceReservationInfo.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 _MKPlaceReservationInfo + +- (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/MapKit/src/_MKPlaceViewController.m b/src/frameworks/MapKit/src/_MKPlaceViewController.m new file mode 100644 index 000000000..530e949c5 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlaceViewController.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 _MKPlaceViewController + +- (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/MapKit/src/_MKPlatterImageViewNoAutoLayout.m b/src/frameworks/MapKit/src/_MKPlatterImageViewNoAutoLayout.m new file mode 100644 index 000000000..5d85855fe --- /dev/null +++ b/src/frameworks/MapKit/src/_MKPlatterImageViewNoAutoLayout.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 _MKPlatterImageViewNoAutoLayout + +- (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/MapKit/src/_MKProblemReportTicket.m b/src/frameworks/MapKit/src/_MKProblemReportTicket.m new file mode 100644 index 000000000..dc70399cd --- /dev/null +++ b/src/frameworks/MapKit/src/_MKProblemReportTicket.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 _MKProblemReportTicket + +- (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/MapKit/src/_MKQuickRouteManager.m b/src/frameworks/MapKit/src/_MKQuickRouteManager.m new file mode 100644 index 000000000..de4c4738b --- /dev/null +++ b/src/frameworks/MapKit/src/_MKQuickRouteManager.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 _MKQuickRouteManager + +- (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/MapKit/src/_MKResizingLayer.m b/src/frameworks/MapKit/src/_MKResizingLayer.m new file mode 100644 index 000000000..b88bb3d27 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKResizingLayer.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 _MKResizingLayer + +- (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/MapKit/src/_MKResultView.m b/src/frameworks/MapKit/src/_MKResultView.m new file mode 100644 index 000000000..ded4e63c0 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKResultView.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 _MKResultView + +- (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/MapKit/src/_MKRightImageButton.m b/src/frameworks/MapKit/src/_MKRightImageButton.m new file mode 100644 index 000000000..12cb88497 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKRightImageButton.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 _MKRightImageButton + +- (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/MapKit/src/_MKRotationGestureRecognizer.m b/src/frameworks/MapKit/src/_MKRotationGestureRecognizer.m new file mode 100644 index 000000000..55922af2c --- /dev/null +++ b/src/frameworks/MapKit/src/_MKRotationGestureRecognizer.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 _MKRotationGestureRecognizer + +- (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/MapKit/src/_MKRouteETA.m b/src/frameworks/MapKit/src/_MKRouteETA.m new file mode 100644 index 000000000..354a7b1e1 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKRouteETA.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 _MKRouteETA + +- (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/MapKit/src/_MKRouteETAFetcher.m b/src/frameworks/MapKit/src/_MKRouteETAFetcher.m new file mode 100644 index 000000000..36330d915 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKRouteETAFetcher.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 _MKRouteETAFetcher + +- (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/MapKit/src/_MKScaleViewTransitionDelegate.m b/src/frameworks/MapKit/src/_MKScaleViewTransitionDelegate.m new file mode 100644 index 000000000..c43614e13 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKScaleViewTransitionDelegate.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 _MKScaleViewTransitionDelegate + +- (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/MapKit/src/_MKSearchFieldPlaceholderTicket.m b/src/frameworks/MapKit/src/_MKSearchFieldPlaceholderTicket.m new file mode 100644 index 000000000..845572933 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKSearchFieldPlaceholderTicket.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 _MKSearchFieldPlaceholderTicket + +- (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/MapKit/src/_MKSearchTicket.m b/src/frameworks/MapKit/src/_MKSearchTicket.m new file mode 100644 index 000000000..4c283017b --- /dev/null +++ b/src/frameworks/MapKit/src/_MKSearchTicket.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 _MKSearchTicket + +- (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/MapKit/src/_MKSmallCalloutContainerView.m b/src/frameworks/MapKit/src/_MKSmallCalloutContainerView.m new file mode 100644 index 000000000..791e2a7ea --- /dev/null +++ b/src/frameworks/MapKit/src/_MKSmallCalloutContainerView.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 _MKSmallCalloutContainerView + +- (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/MapKit/src/_MKSmallCalloutPassthroughButton.m b/src/frameworks/MapKit/src/_MKSmallCalloutPassthroughButton.m new file mode 100644 index 000000000..50fc508fa --- /dev/null +++ b/src/frameworks/MapKit/src/_MKSmallCalloutPassthroughButton.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 _MKSmallCalloutPassthroughButton + +- (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/MapKit/src/_MKSortedDepartureCollection.m b/src/frameworks/MapKit/src/_MKSortedDepartureCollection.m new file mode 100644 index 000000000..a4390047b --- /dev/null +++ b/src/frameworks/MapKit/src/_MKSortedDepartureCollection.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 _MKSortedDepartureCollection + +- (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/MapKit/src/_MKSpatialColliderPairSet.m b/src/frameworks/MapKit/src/_MKSpatialColliderPairSet.m new file mode 100644 index 000000000..6ca46e88a --- /dev/null +++ b/src/frameworks/MapKit/src/_MKSpatialColliderPairSet.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 _MKSpatialColliderPairSet + +- (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/MapKit/src/_MKStackView.m b/src/frameworks/MapKit/src/_MKStackView.m new file mode 100644 index 000000000..8e5b8e393 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKStackView.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 _MKStackView + +- (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/MapKit/src/_MKStackingContentView.m b/src/frameworks/MapKit/src/_MKStackingContentView.m new file mode 100644 index 000000000..14bdcc9be --- /dev/null +++ b/src/frameworks/MapKit/src/_MKStackingContentView.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 _MKStackingContentView + +- (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/MapKit/src/_MKStackingPlaceholderView.m b/src/frameworks/MapKit/src/_MKStackingPlaceholderView.m new file mode 100644 index 000000000..c4bc8a9d3 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKStackingPlaceholderView.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 _MKStackingPlaceholderView + +- (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/MapKit/src/_MKStackingViewControllerHeaderView.m b/src/frameworks/MapKit/src/_MKStackingViewControllerHeaderView.m new file mode 100644 index 000000000..54f9982a9 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKStackingViewControllerHeaderView.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 _MKStackingViewControllerHeaderView + +- (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/MapKit/src/_MKTableViewController.m b/src/frameworks/MapKit/src/_MKTableViewController.m new file mode 100644 index 000000000..b02425141 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTableViewController.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 _MKTableViewController + +- (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/MapKit/src/_MKTableViewControllerRootView.m b/src/frameworks/MapKit/src/_MKTableViewControllerRootView.m new file mode 100644 index 000000000..30f7dceb8 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTableViewControllerRootView.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 _MKTableViewControllerRootView + +- (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/MapKit/src/_MKTicket.m b/src/frameworks/MapKit/src/_MKTicket.m new file mode 100644 index 000000000..9dfb5ae40 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTicket.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 _MKTicket + +- (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/MapKit/src/_MKTokenAttributedString.m b/src/frameworks/MapKit/src/_MKTokenAttributedString.m new file mode 100644 index 000000000..cc5ab0192 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTokenAttributedString.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 _MKTokenAttributedString + +- (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/MapKit/src/_MKTransitConnectionCell.m b/src/frameworks/MapKit/src/_MKTransitConnectionCell.m new file mode 100644 index 000000000..35ee2169e --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTransitConnectionCell.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 _MKTransitConnectionCell + +- (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/MapKit/src/_MKTransitInactiveLine.m b/src/frameworks/MapKit/src/_MKTransitInactiveLine.m new file mode 100644 index 000000000..6c1009760 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTransitInactiveLine.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 _MKTransitInactiveLine + +- (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/MapKit/src/_MKTransitLineTicket.m b/src/frameworks/MapKit/src/_MKTransitLineTicket.m new file mode 100644 index 000000000..cecca7fea --- /dev/null +++ b/src/frameworks/MapKit/src/_MKTransitLineTicket.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 _MKTransitLineTicket + +- (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/MapKit/src/_MKUILabel.m b/src/frameworks/MapKit/src/_MKUILabel.m new file mode 100644 index 000000000..2677e42bd --- /dev/null +++ b/src/frameworks/MapKit/src/_MKUILabel.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 _MKUILabel + +- (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/MapKit/src/_MKUIViewController.m b/src/frameworks/MapKit/src/_MKUIViewController.m new file mode 100644 index 000000000..ee9dba15f --- /dev/null +++ b/src/frameworks/MapKit/src/_MKUIViewController.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 _MKUIViewController + +- (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/MapKit/src/_MKUIViewControllerClickableRootView.m b/src/frameworks/MapKit/src/_MKUIViewControllerClickableRootView.m new file mode 100644 index 000000000..23e8318f2 --- /dev/null +++ b/src/frameworks/MapKit/src/_MKUIViewControllerClickableRootView.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 _MKUIViewControllerClickableRootView + +- (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/MapKit/src/_MKUIViewControllerRootView.m b/src/frameworks/MapKit/src/_MKUIViewControllerRootView.m new file mode 100644 index 000000000..3f817990b --- /dev/null +++ b/src/frameworks/MapKit/src/_MKUIViewControllerRootView.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 _MKUIViewControllerRootView + +- (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/MapKit/src/_MKWiFiObserver.m b/src/frameworks/MapKit/src/_MKWiFiObserver.m new file mode 100644 index 000000000..89b4163ff --- /dev/null +++ b/src/frameworks/MapKit/src/_MKWiFiObserver.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 _MKWiFiObserver + +- (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/MapKit/src/_MXAssetStorage.m b/src/frameworks/MapKit/src/_MXAssetStorage.m new file mode 100644 index 000000000..4aca3700a --- /dev/null +++ b/src/frameworks/MapKit/src/_MXAssetStorage.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 _MXAssetStorage + +- (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/MapKit/src/_MXBundleBlacklistEntry.m b/src/frameworks/MapKit/src/_MXBundleBlacklistEntry.m new file mode 100644 index 000000000..d74cb77e1 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXBundleBlacklistEntry.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 _MXBundleBlacklistEntry + +- (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/MapKit/src/_MXExtension.m b/src/frameworks/MapKit/src/_MXExtension.m new file mode 100644 index 000000000..eaed084c9 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtension.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 _MXExtension + +- (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/MapKit/src/_MXExtensionBaseMapFeature.m b/src/frameworks/MapKit/src/_MXExtensionBaseMapFeature.m new file mode 100644 index 000000000..ea460b044 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionBaseMapFeature.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 _MXExtensionBaseMapFeature + +- (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/MapKit/src/_MXExtensionBaseMapNamedImage.m b/src/frameworks/MapKit/src/_MXExtensionBaseMapNamedImage.m new file mode 100644 index 000000000..87502206d --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionBaseMapNamedImage.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 _MXExtensionBaseMapNamedImage + +- (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/MapKit/src/_MXExtensionBaseMapRequest.m b/src/frameworks/MapKit/src/_MXExtensionBaseMapRequest.m new file mode 100644 index 000000000..f2324a3f3 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionBaseMapRequest.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 _MXExtensionBaseMapRequest + +- (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/MapKit/src/_MXExtensionBaseMapResponse.m b/src/frameworks/MapKit/src/_MXExtensionBaseMapResponse.m new file mode 100644 index 000000000..3c7b94302 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionBaseMapResponse.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 _MXExtensionBaseMapResponse + +- (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/MapKit/src/_MXExtensionBaseMapServiceRequestDispatcher.m b/src/frameworks/MapKit/src/_MXExtensionBaseMapServiceRequestDispatcher.m new file mode 100644 index 000000000..b3cafa4e1 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionBaseMapServiceRequestDispatcher.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 _MXExtensionBaseMapServiceRequestDispatcher + +- (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/MapKit/src/_MXExtensionContainingAppProxy.m b/src/frameworks/MapKit/src/_MXExtensionContainingAppProxy.m new file mode 100644 index 000000000..c89c34980 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionContainingAppProxy.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 _MXExtensionContainingAppProxy + +- (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/MapKit/src/_MXExtensionContext.m b/src/frameworks/MapKit/src/_MXExtensionContext.m new file mode 100644 index 000000000..dc275bc2f --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionContext.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 _MXExtensionContext + +- (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/MapKit/src/_MXExtensionDispatchCenter.m b/src/frameworks/MapKit/src/_MXExtensionDispatchCenter.m new file mode 100644 index 000000000..ab917ce57 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionDispatchCenter.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 _MXExtensionDispatchCenter + +- (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/MapKit/src/_MXExtensionHostContext.m b/src/frameworks/MapKit/src/_MXExtensionHostContext.m new file mode 100644 index 000000000..97bbc4da7 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionHostContext.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 _MXExtensionHostContext + +- (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/MapKit/src/_MXExtensionHostViewController.m b/src/frameworks/MapKit/src/_MXExtensionHostViewController.m new file mode 100644 index 000000000..824a1486c --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionHostViewController.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 _MXExtensionHostViewController + +- (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/MapKit/src/_MXExtensionInternalServiceRequestDispatcher.m b/src/frameworks/MapKit/src/_MXExtensionInternalServiceRequestDispatcher.m new file mode 100644 index 000000000..860d6af28 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionInternalServiceRequestDispatcher.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 _MXExtensionInternalServiceRequestDispatcher + +- (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/MapKit/src/_MXExtensionInternalStreamingServiceRequestDispatcher.m b/src/frameworks/MapKit/src/_MXExtensionInternalStreamingServiceRequestDispatcher.m new file mode 100644 index 000000000..e3f1e2790 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionInternalStreamingServiceRequestDispatcher.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 _MXExtensionInternalStreamingServiceRequestDispatcher + +- (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/MapKit/src/_MXExtensionLookupPolicy.m b/src/frameworks/MapKit/src/_MXExtensionLookupPolicy.m new file mode 100644 index 000000000..e3cd4b6df --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionLookupPolicy.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 _MXExtensionLookupPolicy + +- (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/MapKit/src/_MXExtensionManager.m b/src/frameworks/MapKit/src/_MXExtensionManager.m new file mode 100644 index 000000000..b722f355b --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionManager.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 _MXExtensionManager + +- (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/MapKit/src/_MXExtensionMatchingMerger.m b/src/frameworks/MapKit/src/_MXExtensionMatchingMerger.m new file mode 100644 index 000000000..61c5fbee8 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionMatchingMerger.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 _MXExtensionMatchingMerger + +- (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/MapKit/src/_MXExtensionProvider.m b/src/frameworks/MapKit/src/_MXExtensionProvider.m new file mode 100644 index 000000000..c08305215 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionProvider.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 _MXExtensionProvider + +- (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/MapKit/src/_MXExtensionRequestDispatcher.m b/src/frameworks/MapKit/src/_MXExtensionRequestDispatcher.m new file mode 100644 index 000000000..7e5264b65 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionRequestDispatcher.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 _MXExtensionRequestDispatcher + +- (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/MapKit/src/_MXExtensionRequestReceipt.m b/src/frameworks/MapKit/src/_MXExtensionRequestReceipt.m new file mode 100644 index 000000000..ec322a146 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionRequestReceipt.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 _MXExtensionRequestReceipt + +- (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/MapKit/src/_MXExtensionRideSharingRide.m b/src/frameworks/MapKit/src/_MXExtensionRideSharingRide.m new file mode 100644 index 000000000..fc10312a2 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionRideSharingRide.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 _MXExtensionRideSharingRide + +- (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/MapKit/src/_MXExtensionRideSharingSearchRequest.m b/src/frameworks/MapKit/src/_MXExtensionRideSharingSearchRequest.m new file mode 100644 index 000000000..ac37a5937 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionRideSharingSearchRequest.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 _MXExtensionRideSharingSearchRequest + +- (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/MapKit/src/_MXExtensionRideSharingSearchResponse.m b/src/frameworks/MapKit/src/_MXExtensionRideSharingSearchResponse.m new file mode 100644 index 000000000..80a9f8b0f --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionRideSharingSearchResponse.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 _MXExtensionRideSharingSearchResponse + +- (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/MapKit/src/_MXExtensionService.m b/src/frameworks/MapKit/src/_MXExtensionService.m new file mode 100644 index 000000000..4fe8b1b56 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionService.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 _MXExtensionService + +- (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/MapKit/src/_MXExtensionServiceCenter.m b/src/frameworks/MapKit/src/_MXExtensionServiceCenter.m new file mode 100644 index 000000000..286b7d8c8 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionServiceCenter.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 _MXExtensionServiceCenter + +- (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/MapKit/src/_MXExtensionVendorContext.m b/src/frameworks/MapKit/src/_MXExtensionVendorContext.m new file mode 100644 index 000000000..755f42cc7 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionVendorContext.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 _MXExtensionVendorContext + +- (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/MapKit/src/_MXExtensionVendorViewController.m b/src/frameworks/MapKit/src/_MXExtensionVendorViewController.m new file mode 100644 index 000000000..ea19e2569 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXExtensionVendorViewController.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 _MXExtensionVendorViewController + +- (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/MapKit/src/_MXSerialQueue.m b/src/frameworks/MapKit/src/_MXSerialQueue.m new file mode 100644 index 000000000..958c3f9b7 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXSerialQueue.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 _MXSerialQueue + +- (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/MapKit/src/_MXVersion.m b/src/frameworks/MapKit/src/_MXVersion.m new file mode 100644 index 000000000..065e24885 --- /dev/null +++ b/src/frameworks/MapKit/src/_MXVersion.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 _MXVersion + +- (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/MapKit/src/_NSImageAdaptiveToScale.m b/src/frameworks/MapKit/src/_NSImageAdaptiveToScale.m new file mode 100644 index 000000000..7444a12d4 --- /dev/null +++ b/src/frameworks/MapKit/src/_NSImageAdaptiveToScale.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 _NSImageAdaptiveToScale + +- (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/MapKit/src/_NSImageRepAdaptiveToScale.m b/src/frameworks/MapKit/src/_NSImageRepAdaptiveToScale.m new file mode 100644 index 000000000..a9213930b --- /dev/null +++ b/src/frameworks/MapKit/src/_NSImageRepAdaptiveToScale.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 _NSImageRepAdaptiveToScale + +- (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/MapKit/src/_mkMapServiceWalletMerchantTicket.m b/src/frameworks/MapKit/src/_mkMapServiceWalletMerchantTicket.m new file mode 100644 index 000000000..ec9a36152 --- /dev/null +++ b/src/frameworks/MapKit/src/_mkMapServiceWalletMerchantTicket.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 _mkMapServiceWalletMerchantTicket + +- (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/include/Kerberos b/src/frameworks/include/Kerberos new file mode 120000 index 000000000..574907909 --- /dev/null +++ b/src/frameworks/include/Kerberos @@ -0,0 +1 @@ +../Kerberos/include/Kerberos \ No newline at end of file diff --git a/src/frameworks/include/MapKit b/src/frameworks/include/MapKit new file mode 120000 index 000000000..57480d956 --- /dev/null +++ b/src/frameworks/include/MapKit @@ -0,0 +1 @@ +../MapKit/include/MapKit \ No newline at end of file diff --git a/src/private-frameworks/CMakeLists.txt b/src/private-frameworks/CMakeLists.txt new file mode 100644 index 000000000..76bb30ade --- /dev/null +++ b/src/private-frameworks/CMakeLists.txt @@ -0,0 +1,3 @@ +project(private-frameworks) + +add_subdirectory(MobileDevice) diff --git a/src/private-frameworks/MobileDevice/CMakeLists.txt b/src/private-frameworks/MobileDevice/CMakeLists.txt new file mode 100644 index 000000000..b311d5094 --- /dev/null +++ b/src/private-frameworks/MobileDevice/CMakeLists.txt @@ -0,0 +1,23 @@ +project(MobileDevice) + +set(DYLIB_COMPAT_VERSION "1.0.0") +set(DYLIB_CURRENT_VERSION "1.0.0") + +add_framework(MobileDevice + FAT + CURRENT_VERSION + PRIVATE + VERSION "A" + + SOURCES + src/MobileDevice.m + src/AMSupportURLConnectionDelegate.m + src/AMSupportURLSession.m + src/RPStream.m + src/PersonalizedImage.m + + DEPENDENCIES + system + objc + Foundation +) diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/AMSupportURLConnectionDelegate.h b/src/private-frameworks/MobileDevice/include/MobileDevice/AMSupportURLConnectionDelegate.h new file mode 100644 index 000000000..0cbef76ab --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/AMSupportURLConnectionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 AMSupportURLConnectionDelegate : NSObject + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/AMSupportURLSession.h b/src/private-frameworks/MobileDevice/include/MobileDevice/AMSupportURLSession.h new file mode 100644 index 000000000..c024e4439 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/AMSupportURLSession.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 AMSupportURLSession : NSObject + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/MDRemoteServiceSupportProtocol.h b/src/private-frameworks/MobileDevice/include/MobileDevice/MDRemoteServiceSupportProtocol.h new file mode 100644 index 000000000..fae161c07 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/MDRemoteServiceSupportProtocol.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 MDRemoteServiceSupportProtocol + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/MobileDevice.h b/src/private-frameworks/MobileDevice/include/MobileDevice/MobileDevice.h new file mode 100644 index 000000000..910746922 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/MobileDevice.h @@ -0,0 +1,633 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU 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 _MobileDevice_H_ +#define _MobileDevice_H_ + +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +void* AFCConnectionClose(void); +void* AFCConnectionCopyLastErrorInfo(void); +void* AFCConnectionCreate(void); +void* AFCConnectionGetContext(void); +void* AFCConnectionGetFSBlockSize(void); +void* AFCConnectionGetIOTimeout(void); +void* AFCConnectionGetSecureContext(void); +void* AFCConnectionGetSocketBlockSize(void); +void* AFCConnectionGetStatus(void); +void* AFCConnectionGetTypeID(void); +void* AFCConnectionInvalidate(void); +void* AFCConnectionIsValid(void); +void* AFCConnectionOpen(void); +void* AFCConnectionProcessOperation(void); +void* AFCConnectionProcessOperations(void); +void* AFCConnectionScheduleWithRunLoop(void); +void* AFCConnectionSetCallBack(void); +void* AFCConnectionSetContext(void); +void* AFCConnectionSetDisposeSecureContextOnInvalidate(void); +void* AFCConnectionSetFSBlockSize(void); +void* AFCConnectionSetIOTimeout(void); +void* AFCConnectionSetSecureContext(void); +void* AFCConnectionSetSocketBlockSize(void); +void* AFCConnectionSubmitOperation(void); +void* AFCConnectionUnscheduleFromRunLoop(void); +void* AFCCopyErrorString(void); +void* AFCCopyPacketTypeString(void); +void* AFCDeviceInfoOpen(void); +void* AFCDirectoryClose(void); +void* AFCDirectoryCreate(void); +void* AFCDirectoryOpen(void); +void* AFCDirectoryRead(void); +void* AFCErrorString(void); +void* AFCFileDescriptorCreateCloseOperation(void); +void* AFCFileDescriptorCreateGetPositionOperation(void); +void* AFCFileDescriptorCreateLockOperation(void); +void* AFCFileDescriptorCreateReadAtPositionOperation(void); +void* AFCFileDescriptorCreateReadOperation(void); +void* AFCFileDescriptorCreateSetImmutableHintOperation(void); +void* AFCFileDescriptorCreateSetPositionOperation(void); +void* AFCFileDescriptorCreateSetSizeOperation(void); +void* AFCFileDescriptorCreateUnlockOperation(void); +void* AFCFileDescriptorCreateWriteAtPositionOperation(void); +void* AFCFileDescriptorCreateWriteOperation(void); +void* AFCFileDescriptorGetTypeID(void); +void* AFCFileDescriptorInvalidate(void); +void* AFCFileDescriptorIsValid(void); +void* AFCFileInfoOpen(void); +void* AFCFileRefClose(void); +void* AFCFileRefLock(void); +void* AFCFileRefOpen(void); +void* AFCFileRefRead(void); +void* AFCFileRefSeek(void); +void* AFCFileRefSetFileSize(void); +void* AFCFileRefTell(void); +void* AFCFileRefUnlock(void); +void* AFCFileRefWrite(void); +void* AFCGetClientVersionString(void); +void* AFCKeyValueClose(void); +void* AFCKeyValueRead(void); +void* AFCLinkPath(void); +void* AFCLog(void); +void* AFCOperationCopyPacketData(void); +void* AFCOperationCreateGetConnectionInfo(void); +void* AFCOperationCreateGetDeviceInfo(void); +void* AFCOperationCreateGetFileHash(void); +void* AFCOperationCreateGetFileHashWithRange(void); +void* AFCOperationCreateGetFileInfo(void); +void* AFCOperationCreateGetSizeOfPathContents(void); +void* AFCOperationCreateLinkPath(void); +void* AFCOperationCreateMakeDirectory(void); +void* AFCOperationCreateOpenFile(void); +void* AFCOperationCreatePacketHeaderDictionary(void); +void* AFCOperationCreateReadDirectory(void); +void* AFCOperationCreateRemovePath(void); +void* AFCOperationCreateRemovePathAndContents(void); +void* AFCOperationCreateRenamePath(void); +void* AFCOperationCreateSetConnectionOptions(void); +void* AFCOperationCreateSetModTime(void); +void* AFCOperationGetContext(void); +void* AFCOperationGetResultObject(void); +void* AFCOperationGetResultStatus(void); +void* AFCOperationGetState(void); +void* AFCOperationGetTypeID(void); +void* AFCOperationSetContext(void); +void* AFCPlatformInitialize(void); +void* AFCRemovePath(void); +void* AFCRenamePath(void); +void* AFCSetLogLevel(void); +void* AMAuthInstallApCopyImageTag(void); +void* AMAuthInstallApCreateImageProperties(void); +void* AMAuthInstallApCreatePersonalizedResponse(void); +void* AMAuthInstallApExtractZippedDeviceMap(void); +void* AMAuthInstallApImg4CopyPayloadType(void); +void* AMAuthInstallApImg4CreateServerRequestDictionary(void); +void* AMAuthInstallApImg4CreateStitchTicket(void); +void* AMAuthInstallApImg4ForceLocalSigning(void); +void* AMAuthInstallApImg4PersonalizeFile(void); +void* AMAuthInstallApImg4SetSepNonce(void); +void* AMAuthInstallApSetNonce(void); +void* AMAuthInstallApSetParameters(void); +void* AMAuthInstallCreate(void); +void* AMAuthInstallGetLocalizedStatusString(void); +void* AMAuthInstallLogSetHandler(void); +void* AMAuthInstallRequestSendSync(void); +void* AMAuthInstallSetSigningServerURL(void); +void* AMAuthInstallSsoEnable(void); +void* AMAuthInstallSsoInitialize(void); +void* AMAuthInstallSupportCompareStringToInt32(void); +void* AMAuthInstallSupportCopyDataFromHexString(void); +void* AMAuthInstallSupportCopyURLToNewTempDirectory(void); +void* AMAuthInstallSupportCreateDataFromFileURL(void); +void* AMAuthInstallSupportCreateDictionaryFromFileURL(void); +void* AMAuthInstallSupportDictionarySetBoolean(void); +void* AMAuthInstallSupportDictionarySetInteger32(void); +void* AMAuthInstallSupportDictionarySetInteger64(void); +void* AMAuthInstallSupportFileURLExists(void); +void* AMAuthInstallSupportGetLibraryVersionString(void); +void* AMAuthInstallSupportMakeDirectory(void); +void* AMDCopyArrayOfDevicesMatchingQuery(void); +void* AMDCopyAuthenticationIdentityForDevice(void); +void* AMDCopyErrorText(void); +void* AMDCopySystemBonjourUniqueID(void); +void* AMDCopyUDIDForPairingIdentity(void); +void* AMDCreateDeviceList(void); +void* AMDErrorForMobileInstallationCallbackDict(void); +void* AMDErrorString(void); +void* AMDFUModeDeviceCopyAPNonce(void); +void* AMDFUModeDeviceCopyAuthInstallPreflightOptions(void); +void* AMDFUModeDeviceCopyBoardConfig(void); +void* AMDFUModeDeviceCopyEcid(void); +void* AMDFUModeDeviceCopySEPNonce(void); +void* AMDFUModeDeviceGetBoardID(void); +void* AMDFUModeDeviceGetChipID(void); +void* AMDFUModeDeviceGetECID(void); +void* AMDFUModeDeviceGetEffectiveProductionMode(void); +void* AMDFUModeDeviceGetEffectiveSecurityMode(void); +void* AMDFUModeDeviceGetImage4Aware(void); +void* AMDFUModeDeviceGetLocationID(void); +void* AMDFUModeDeviceGetOperation(void); +void* AMDFUModeDeviceGetProductID(void); +void* AMDFUModeDeviceGetProductType(void); +void* AMDFUModeDeviceGetProductionMode(void); +void* AMDFUModeDeviceGetProgress(void); +void* AMDFUModeDeviceGetSecurityDomain(void); +void* AMDFUModeDeviceGetSecurityEpoch(void); +void* AMDFUModeDeviceGetSecurityMode(void); +void* AMDFUModeDeviceGetTypeID(void); +void* AMDFUModeDeviceIsBootstrapOnly(void); +void* AMDFUModeDeviceRequestAbbreviatedSendSync(void); +void* AMDFUModeDeviceResetAuthInstallSettings(void); +void* AMDGetBundleVersion(void); +void* AMDGetPairingRecordDirectoryPath(void); +void* AMDListenForNotifications(void); +void* AMDObserveNotification(void); +void* AMDPostNotification(void); +void* AMDSecureListenForNotifications(void); +void* AMDSecureListenForNotificationsWithRetainedContext(void); +void* AMDSecureObserveNotification(void); +void* AMDSecurePostNotification(void); +void* AMDSecureShutdownNotificationProxy(void); +void* AMDServiceConnectionBufferedReadSize(void); +void* AMDServiceConnectionCreate(void); +void* AMDServiceConnectionGetSecureIOContext(void); +void* AMDServiceConnectionGetSocket(void); +void* AMDServiceConnectionGetTypeID(void); +void* AMDServiceConnectionInvalidate(void); +void* AMDServiceConnectionReceive(void); +void* AMDServiceConnectionReceiveMessage(void); +void* AMDServiceConnectionSend(void); +void* AMDServiceConnectionSendMessage(void); +void* AMDServiceConnectionSetDevice(void); +void* AMDServiceConnectionSetServiceName(void); +void* AMDSetLogLevel(void); +void* AMDShutdownNotificationProxy(void); +void* AMDeviceActivate(void); +void* AMDeviceActivateWithOptions(void); +void* AMDeviceArchiveApplication(void); +void* AMDeviceCheckCapabilitiesMatch(void); +void* AMDeviceConnect(void); +void* AMDeviceCopyAuthInstallPreflightOptions(void); +void* AMDeviceCopyDeviceIdentifier(void); +void* AMDeviceCopyDeviceLocation(void); +void* AMDeviceCopyDeviceUSBSerialNumber(void); +void* AMDeviceCopyFDRPreflightOptions(void); +void* AMDeviceCopyMultipleValuesWithError(void); +void* AMDeviceCopyPairedCompanion(void); +void* AMDeviceCopyPairedWatch(void); +void* AMDeviceCopyPersonalizationNonce(void); +void* AMDeviceCopyPersonalizationNonceBridgeOS(void); +void* AMDeviceCopyProvisioningProfiles(void); +void* AMDeviceCopyValue(void); +void* AMDeviceCopyValueWithError(void); +void* AMDeviceCreate(void); +void* AMDeviceCreateActivationInfo(void); +void* AMDeviceCreateActivationInfoWithOptions(void); +void* AMDeviceCreateActivationSessionInfo(void); +void* AMDeviceCreateCopy(void); +void* AMDeviceCreateFromProperties(void); +void* AMDeviceCreateHouseArrestService(void); +void* AMDeviceCreateSRPConnection(void); +void* AMDeviceCreateWakeupToken(void); +void* AMDeviceDeactivate(void); +void* AMDeviceDeleteHostPairingRecordForUDID(void); +void* AMDeviceDisconnect(void); +void* AMDeviceEnterRecovery(void); +void* AMDeviceExtendedPairWithOptions(void); +void* AMDeviceGetConnectionID(void); +void* AMDeviceGetInterfaceSpeed(void); +void* AMDeviceGetInterfaceType(void); +void* AMDeviceGetLocalOrRemoteOffsetToResume(void); +void* AMDeviceGetName(void); +void* AMDeviceGetTypeID(void); +void* AMDeviceGetUserInfo(void); +void* AMDeviceGetWirelessBuddyFlags(void); +void* AMDeviceImageMounted(void); +void* AMDeviceImageMountedBridgeOS(void); +void* AMDeviceImageMountedMacOS(void); +void* AMDeviceInstallApplication(void); +void* AMDeviceInstallProvisioningProfile(void); +void* AMDeviceIsAtLeastVersionOnPlatform(void); +void* AMDeviceIsPaired(void); +void* AMDeviceIsValid(void); +void* AMDeviceIsWiFiPairableRef(void); +void* AMDeviceLookupApplicationArchives(void); +void* AMDeviceLookupApplications(void); +void* AMDeviceMountImage(void); +void* AMDeviceMountImageBridgeOS(void); +void* AMDeviceMountImageMacOS(void); +void* AMDeviceMountImageOnHost(void); +void* AMDeviceMountPersonalizedBundle(void); +void* AMDeviceMountPersonalizedBundleBridgeOS(void); +void* AMDeviceNotificationSubscribe(void); +void* AMDeviceNotificationSubscribeWithOptions(void); +void* AMDeviceNotificationUnsubscribe(void); +void* AMDevicePair(void); +void* AMDevicePairWithCallback(void); +void* AMDevicePairWithOptions(void); +void* AMDevicePowerAssertionCreate(void); +void* AMDevicePowerAssertionGetTypeID(void); +void* AMDevicePreflightOperationCreate(void); +void* AMDevicePreflightOperationGetRunLoopSource(void); +void* AMDevicePreflightOperationGetTypeID(void); +void* AMDevicePreflightOperationInvalidate(void); +void* AMDeviceRegisterForCUNotificationsWithOptions(void); +void* AMDeviceRegisterForCUStateNotificationsWithOptions(void); +void* AMDeviceRelayFile(void); +void* AMDeviceRelease(void); +void* AMDeviceRemoveApplicationArchive(void); +void* AMDeviceRemoveProvisioningProfile(void); +void* AMDeviceRemoveValue(void); +void* AMDeviceRequestAbbreviatedSendSync(void); +void* AMDeviceRestoreApplication(void); +void* AMDeviceRetain(void); +void* AMDeviceSecureArchiveApplication(void); +void* AMDeviceSecureCheckCapabilitiesMatch(void); +void* AMDeviceSecureInstallApplication(void); +void* AMDeviceSecureInstallApplicationBundle(void); +void* AMDeviceSecureRemoveApplicationArchive(void); +void* AMDeviceSecureRestoreApplication(void); +void* AMDeviceSecureStartService(void); +void* AMDeviceSecureTransferPath(void); +void* AMDeviceSecureUninstallApplication(void); +void* AMDeviceSecureUpgradeApplication(void); +void* AMDeviceSetUserInfo(void); +void* AMDeviceSetValue(void); +void* AMDeviceSetWirelessBuddyFlags(void); +void* AMDeviceStartHouseArrestService(void); +void* AMDeviceStartService(void); +void* AMDeviceStartServiceWithOptions(void); +void* AMDeviceStartSession(void); +void* AMDeviceStopSession(void); +void* AMDeviceTransferApplication(void); +void* AMDeviceTransferPath(void); +void* AMDeviceUSBDeviceID(void); +void* AMDeviceUSBLocationID(void); +void* AMDeviceUSBProductID(void); +void* AMDeviceUninstallApplication(void); +void* AMDeviceUnmountImageOnHost(void); +void* AMDeviceUnpair(void); +void* AMDeviceUpgradeApplication(void); +void* AMDeviceValidatePairing(void); +void* AMDeviceVerifySRPConnection(void); +void* AMDeviceWakeupOperationCreateWithToken(void); +void* AMDeviceWakeupOperationGetTypeID(void); +void* AMDeviceWakeupOperationInvalidate(void); +void* AMDeviceWakeupOperationSchedule(void); +void* AMDeviceWakeupUsingToken(void); +void* AMRAuthInstallCopyLocalizedStringForServerError(void); +void* AMRAuthInstallCopyPreflightOptions(void); +void* AMRAuthInstallCreateOptionsForBootstrapDevice(void); +void* AMRAuthInstallFinalize(void); +void* AMRAuthInstallPreflight(void); +void* AMRLocalizedCopyStringForAMRError(void); +void* AMRLocalizedCopyStringForAMROperation(void); +void* AMRLog(void); +void* AMRLogv(void); +void* AMRecoveryModeDeviceCopyAPNonce(void); +void* AMRecoveryModeDeviceCopyAuthInstallPreflightOptions(void); +void* AMRecoveryModeDeviceCopyBoardConfig(void); +void* AMRecoveryModeDeviceCopyEcid(void); +void* AMRecoveryModeDeviceCopyEnvironmentVariableFromDevice(void); +void* AMRecoveryModeDeviceCopyIMEI(void); +void* AMRecoveryModeDeviceCopySEPNonce(void); +void* AMRecoveryModeDeviceCopySerialNumber(void); +void* AMRecoveryModeDeviceCreateWithIOService(void); +void* AMRecoveryModeDeviceGetBoardID(void); +void* AMRecoveryModeDeviceGetChipID(void); +void* AMRecoveryModeDeviceGetECID(void); +void* AMRecoveryModeDeviceGetEffectiveProductionMode(void); +void* AMRecoveryModeDeviceGetEffectiveSecurityMode(void); +void* AMRecoveryModeDeviceGetLocationID(void); +void* AMRecoveryModeDeviceGetProductID(void); +void* AMRecoveryModeDeviceGetProductType(void); +void* AMRecoveryModeDeviceGetProductionMode(void); +void* AMRecoveryModeDeviceGetProgress(void); +void* AMRecoveryModeDeviceGetSecurityEpoch(void); +void* AMRecoveryModeDeviceGetSecurityMode(void); +void* AMRecoveryModeDeviceGetSupportedImageFormat(void); +void* AMRecoveryModeDeviceGetTypeID(void); +void* AMRecoveryModeDeviceIsBootstrapOnly(void); +void* AMRecoveryModeDeviceReboot(void); +void* AMRecoveryModeDeviceRequestAbbreviatedSendSync(void); +void* AMRecoveryModeDeviceSendBlindCommandToDevice(void); +void* AMRecoveryModeDeviceSendCommandToDevice(void); +void* AMRecoveryModeDeviceSendFileToDevice(void); +void* AMRecoveryModeDeviceSetAutoBoot(void); +void* AMRecoveryModeGetSoftwareBuildVersion(void); +void* AMRestorableAttemptMuxRegistration(void); +void* AMRestorableBuildCopyRestoreBundleURL(void); +void* AMRestorableBuildCopySupportedBoardConfigs(void); +void* AMRestorableBuildCopySupportedVariants(void); +void* AMRestorableBuildCreate(void); +void* AMRestorableCommitStashBag(void); +void* AMRestorableCommitStashBagWithManifest(void); +void* AMRestorableCommitStashBagWithRestoreOptions(void); +void* AMRestorableDeviceCopyAMDevice(void); +void* AMRestorableDeviceCopyAuthInstallPreflightOptions(void); +void* AMRestorableDeviceCopyBoardConfig(void); +void* AMRestorableDeviceCopyDFUModeDevice(void); +void* AMRestorableDeviceCopyDefaultRestoreOptions(void); +void* AMRestorableDeviceCopyEnvironmentVariable(void); +void* AMRestorableDeviceCopyMDRemoteServiceDevice(void); +void* AMRestorableDeviceCopyProductString(void); +void* AMRestorableDeviceCopyRecoveryModeDevice(void); +void* AMRestorableDeviceCopyRestoreModeDevice(void); +void* AMRestorableDeviceCopyRestoreOptionsFromDocument(void); +void* AMRestorableDeviceCopySerialDevicePath(void); +void* AMRestorableDeviceCopySerialDeviceSWDName(void); +void* AMRestorableDeviceCopySerialNumber(void); +void* AMRestorableDeviceCopyUserFriendlyName(void); +void* AMRestorableDeviceCreateFromAMDevice(void); +void* AMRestorableDeviceEnableExtraDFUDevices(void); +void* AMRestorableDeviceGetBoardID(void); +void* AMRestorableDeviceGetChipID(void); +void* AMRestorableDeviceGetDFUModeDevice(void); +void* AMRestorableDeviceGetDeviceClass(void); +void* AMRestorableDeviceGetDeviceMapEntryForBoardAndChipID(void); +void* AMRestorableDeviceGetECID(void); +void* AMRestorableDeviceGetFusingInfo(void); +void* AMRestorableDeviceGetLocationID(void); +void* AMRestorableDeviceGetProductID(void); +void* AMRestorableDeviceGetProductType(void); +void* AMRestorableDeviceGetRecoveryModeDevice(void); +void* AMRestorableDeviceGetRestoreOperationsQueue(void); +void* AMRestorableDeviceGetState(void); +void* AMRestorableDeviceGetTypeID(void); +void* AMRestorableDeviceIsInDeviceClass(void); +void* AMRestorableDeviceNeedsUpdatedFramework(void); +void* AMRestorableDeviceRegisterForNotifications(void); +void* AMRestorableDeviceRegisterForNotificationsForDevices(void); +void* AMRestorableDeviceRestore(void); +void* AMRestorableDeviceRestoreWithError(void); +void* AMRestorableDeviceSendBlindCommand(void); +void* AMRestorableDeviceSendCommand(void); +void* AMRestorableDeviceSendFile(void); +void* AMRestorableDeviceSetLogFileURL(void); +void* AMRestorableDeviceSetProxyCredentialsCallback(void); +void* AMRestorableDeviceTriggerUpdateForBoardAndChipIDWithPrompt(void); +void* AMRestorableDeviceTriggerUpdateForDeviceWithPrompt(void); +void* AMRestorableDeviceUnregisterForNotifications(void); +void* AMRestorableDeviceUpdateAvailableForBoardAndChipID(void); +void* AMRestorableDeviceUpdateAvailableForDevice(void); +void* AMRestorableEnableLogStreaming(void); +void* AMRestorableGetCheckpointData(void); +void* AMRestorableGetIdentifyingErrorCode(void); +void* AMRestorableLogToFile(void); +void* AMRestorablePersonalizeCopyManifestTag(void); +void* AMRestorablePersonalizeSendFile(void); +void* AMRestorableSetCheckpointData(void); +void* AMRestorableSetGlobalLocationIDFilter(void); +void* AMRestorableSetGlobalLogFileURL(void); +void* AMRestorableSetLogLevel(void); +void* AMRestoreCopyNormalizedBoardConfig(void); +void* AMRestoreCopySystemRestoreImagePath(void); +void* AMRestoreCreateBootArgsByAddingArg(void); +void* AMRestoreCreateBootArgsByRemovingArg(void); +void* AMRestoreCreateDefaultOptions(void); +void* AMRestoreCreatePathsForBundle(void); +void* AMRestoreDeviceGetFwImages(void); +void* AMRestoreDisableFileLogging(void); +void* AMRestoreEnableExtraDFUDevices(void); +void* AMRestoreEnableFileLogging(void); +void* AMRestoreGetSupportedPayloadVersion(void); +void* AMRestoreLogFilePaths(void); +void* AMRestoreModeCopyDeviceInfo(void); +void* AMRestoreModeDeviceCopyBoardConfig(void); +void* AMRestoreModeDeviceCopyEcid(void); +void* AMRestoreModeDeviceCopyIMEI(void); +void* AMRestoreModeDeviceCopyMarketingPartNumber(void); +void* AMRestoreModeDeviceCopyRestoreLog(void); +void* AMRestoreModeDeviceCopySerialNumber(void); +void* AMRestoreModeDeviceCreate(void); +void* AMRestoreModeDeviceGetDeviceID(void); +void* AMRestoreModeDeviceGetLocationID(void); +void* AMRestoreModeDeviceGetProgress(void); +void* AMRestoreModeDeviceGetTypeID(void); +void* AMRestoreModeDeviceReboot(void); +void* AMRestoreModeGetLastFailureLog(void); +void* AMRestorePerformDFURestore(void); +void* AMRestorePerformRecoveryModeRestore(void); +void* AMRestorePerformRestoreModeRestore(void); +void* AMRestorePerformRestoreModeRestoreWithError(void); +void* AMRestoreRegisterForDeviceNotifications(void); +void* AMRestoreScrubLogs(void); +void* AMRestoreSetLogLevel(void); +void* AMRestoreUnregisterForDeviceNotifications(void); +void* AMRestoreUseFactoryLoggingFormat(void); +void* AMSArchiveBackup(void); +void* AMSBackupWithOptions(void); +void* AMSBeginSync(void); +void* AMSBeginSyncForDataClasses(void); +void* AMSCancelBackupRestore(void); +void* AMSCancelCrashReportCopy(void); +void* AMSCancelSync(void); +void* AMSChangeBackupPassword(void); +void* AMSCleanup(void); +void* AMSClearDataClasses(void); +void* AMSConnectToCrashReportCopyTarget(void); +void* AMSCopyApplicationListFromBackup(void); +void* AMSCopyCrashReportPath(void); +void* AMSCopyCrashReportsFromTarget(void); +void* AMSCopySourcesForRestoreCompatibleWith(void); +void* AMSDisconnectFromCrashReportCopyTarget(void); +void* AMSEnableCloudBackup(void); +void* AMSEnableSyncServices(void); +void* AMSEraseDevice(void); +void* AMSGetBackupInfo(void); +void* AMSGetBackupPasswordFromKeychainForTarget(void); +void* AMSGetCalendarDayLimit(void); +void* AMSGetClientIdentifierAndDisplayNameForTarget(void); +void* AMSGetCollectionsForDataClassName(void); +void* AMSGetCrashReportCopyPreferencesForTarget(void); +void* AMSGetDataClassInfoForTarget(void); +void* AMSGetLastSyncDateForDataClass(void); +void* AMSGetNewRecordCalendarName(void); +void* AMSGetNewRecordGroupName(void); +void* AMSGetNumberOfCrashReportsToCopy(void); +void* AMSGetNumberOfCrashReportsToSubmit(void); +void* AMSGetSourcesForRestore(void); +void* AMSGetSupportedDataClassNames(void); +void* AMSInitialize(void); +void* AMSIsSyncServicesEnabled(void); +void* AMSProcessLinkExitChild(void); +void* AMSProcessLinkInitializeChild(void); +void* AMSProcessLinkInvalidate(void); +void* AMSProcessLinkReadMessageFromChild(void); +void* AMSProcessLinkRelease(void); +void* AMSProcessLinkRetain(void); +void* AMSProcessLinkRunChild(void); +void* AMSProcessLinkSendMessage(void); +void* AMSProcessLinkSendMessageAsync(void); +void* AMSProcessLinkSendMessageLock(void); +void* AMSProcessLinkSendMessageToParent(void); +void* AMSRegisterClientWithTargetIdentifierAndDisplayName(void); +void* AMSResetSyncData(void); +void* AMSRestoreWithApplications(void); +void* AMSSetBackupPasswordInKeychain(void); +void* AMSSetCalendarDayLimit(void); +void* AMSSetCrashReportCopyPreferencesForTarget(void); +void* AMSSetDataClassInfoForTarget(void); +void* AMSSetFilteredCollectionNamesForDataClassName(void); +void* AMSSetNewRecordCalendarName(void); +void* AMSSetNewRecordGroupName(void); +void* AMSSubmitCrashReportsFromTarget(void); +void* AMSSubmitRestoreLogFromPath(void); +void* AMSUnregisterTarget(void); +void* AMSupportCreateDataFromFileURL(void); +void* AMSupportCreateDigest(void); +void* AMSupportCreateErrorInternal(void); +void* AMSupportCreateURLFromString(void); +void* AMSupportHttpCreateDataFromURL(void); +void* AMSupportSafeFree(void); +void* AMSupportSafeRelease(void); +void* AMSupportWriteDataToFileURL(void); +void* ASRServerHandleConnection(void); +void* ASRServerHandleSlurp(void); +void* DERDecodeItemPartialBuffer(void); +void* DERParseInteger(void); +void* MDRemoteServiceDeviceGetPropertyDictionary(void); +void* MDRemoteServiceDeviceGetTypeID(void); +void* MISCopyErrorStringForErrorCode(void); +void* MISProfileCopyPayload(void); +void* MISProfileCopySignerSubjectSummary(void); +void* MISProfileCreate(void); +void* MISProfileCreateDataRepresentation(void); +void* MISProfileCreateForProvisioning(void); +void* MISProfileCreateMutableCopy(void); +void* MISProfileCreateWithData(void); +void* MISProfileCreateWithFile(void); +void* MISProfileGetTypeID(void); +void* MISProfileGetValue(void); +void* MISProfileIsMutable(void); +void* MISProfileRemoveValue(void); +void* MISProfileSetPayload(void); +void* MISProfileSetValue(void); +void* MISProfileSignWithKeyAndCertificates(void); +void* MISProfileSignWithRSACallBack(void); +void* MISProfileValidateSignature(void); +void* MISProfileValidateSignatureWithAnchors(void); +void* MISProfileValidateSignatureWithAnchorsAndPolicy(void); +void* MISProfileWriteToFile(void); +void* MISProvisioningProfileAddDeveloperCertificate(void); +void* MISProvisioningProfileAddEntitlement(void); +void* MISProvisioningProfileAddProvisionedDevice(void); +void* MISProvisioningProfileCheckValidity(void); +void* MISProvisioningProfileCopyApplicationIdentifierPrefixes(void); +void* MISProvisioningProfileCreateMutableCopy(void); +void* MISProvisioningProfileGetCreationDate(void); +void* MISProvisioningProfileGetDeveloperCertificates(void); +void* MISProvisioningProfileGetEntitlements(void); +void* MISProvisioningProfileGetExpirationDate(void); +void* MISProvisioningProfileGetName(void); +void* MISProvisioningProfileGetProvisionedDevices(void); +void* MISProvisioningProfileGetTeamIdentifier(void); +void* MISProvisioningProfileGetUUID(void); +void* MISProvisioningProfileGetVersion(void); +void* MISProvisioningProfileGrantsEntitlement(void); +void* MISProvisioningProfileIncludesDevice(void); +void* MISProvisioningProfileIncludesPlatform(void); +void* MISProvisioningProfileIsAppleInternalProfile(void); +void* MISProvisioningProfileIsForLocalProvisioning(void); +void* MISProvisioningProfileProvisionsAllDevices(void); +void* MISProvisioningProfileSetApplicationIdentifierPrefixes(void); +void* MISProvisioningProfileSetDeveloperCertificates(void); +void* MISProvisioningProfileSetName(void); +void* MISProvisioningProfileSetProvisionsAllDevices(void); +void* MISProvisioningProfileSetTimeToLive(void); +void* MISProvisioningProfileValidateSignature(void); +void* ProcessLinkSetupParent(void); +void* RCGetSystemPartitionExtrasSizeForDevice(void); +void* RPCreateSocksProxyForDeviceRef(void); +void* RPSocksProxyInvalidate(void); +void* RPSocksProxySetDoneCallback(void); +void* RPSocksProxyStart(void); +void* RestoreCheckpointCreateCheckpointFingerprint(void); +void* RestoreCheckpointDataCreate(void); +void* RestoreCheckpointGetCheckpointStatements(void); +void* RestoreCheckpointGetCheckpointWarnings(void); +void* RestoreCheckpointGetLastCheckpointError(void); +void* RestoreCheckpointGetLastCheckpointID(void); +void* RestoreCheckpointGetLastCheckpointResult(void); +void* SZArchiverConvertZipArchiveToStreamable(void); +void* SZArchiverCreateStreamableZip(void); +void* SZArchiverExtractFile(void); +void* SZConduitSendPath(void); +void* SZConduitSendPathWithPreflight(void); +void* USBMuxConnectByPort(void); +void* USBMuxCopyDeviceArray(void); +void* USBMuxListenForDevices(void); +void* USBMuxListenerClose(void); +void* USBMuxListenerCreate(void); +void* USBMuxListenerCreateFiltered(void); +void* USBMuxListenerGetRunLoopSource(void); +void* USBMuxListenerSetDebug(void); +void* _AMRestorableDeviceCopyBoardConfigNoLocking(void); +void* _AMRestorableDeviceGetECIDNoLocking(void); +void* _AMRestorableDeviceGetLocationIDNoLocking(void); +void* _AMRestorableDeviceGetProxy(void); +void* _AMRestorableDeviceSendBlindCommandNoLocking(void); +void* _AMRestorableDeviceSendCommandNoLocking(void); +void* _AMRestorableDeviceSendFileNoLocking(void); +void* _AMRestorableGetEventQueue(void); +void* _AMRestorableGetStateForString(void); +void* _AMRestorableGetStringForState(void); +void* _AMSGetErrorReasonForErrorCode(void); +void* _CreateBonjourDeviceDescriptions(void); +void* _FinalizeMobileDevice(void); +void* _InitializeMobileDevice(void); +void* _ensureDirectoryExists(void); +void* _logData(void); +void* _readDictionary(void); +void* _runBackupTool(void); +void* _sendMessage(void); +void* _writeDictionary(void); + +#endif diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLConnectionDataDelegate.h b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLConnectionDataDelegate.h new file mode 100644 index 000000000..a3bd68c69 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLConnectionDataDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLConnectionDataDelegate + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLConnectionDelegate.h b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLConnectionDelegate.h new file mode 100644 index 000000000..57d49455a --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLConnectionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLConnectionDelegate + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionDelegate.h b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionDelegate.h new file mode 100644 index 000000000..a77fc6a83 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLSessionDelegate + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionStreamDelegate.h b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionStreamDelegate.h new file mode 100644 index 000000000..a6ed488c5 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionStreamDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLSessionStreamDelegate + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionTaskDelegate.h b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionTaskDelegate.h new file mode 100644 index 000000000..f068a7311 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/NSURLSessionTaskDelegate.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 NSURLSessionTaskDelegate + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/PersonalizedImage.h b/src/private-frameworks/MobileDevice/include/MobileDevice/PersonalizedImage.h new file mode 100644 index 000000000..34851b123 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/PersonalizedImage.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 PersonalizedImage : NSObject + +@end diff --git a/src/private-frameworks/MobileDevice/include/MobileDevice/RPStream.h b/src/private-frameworks/MobileDevice/include/MobileDevice/RPStream.h new file mode 100644 index 000000000..f468e4a54 --- /dev/null +++ b/src/private-frameworks/MobileDevice/include/MobileDevice/RPStream.h @@ -0,0 +1,24 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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 RPStream : NSObject + +@end diff --git a/src/private-frameworks/MobileDevice/src/AMSupportURLConnectionDelegate.m b/src/private-frameworks/MobileDevice/src/AMSupportURLConnectionDelegate.m new file mode 100644 index 000000000..078a8585d --- /dev/null +++ b/src/private-frameworks/MobileDevice/src/AMSupportURLConnectionDelegate.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 AMSupportURLConnectionDelegate + +- (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/private-frameworks/MobileDevice/src/AMSupportURLSession.m b/src/private-frameworks/MobileDevice/src/AMSupportURLSession.m new file mode 100644 index 000000000..31a4e1b52 --- /dev/null +++ b/src/private-frameworks/MobileDevice/src/AMSupportURLSession.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 AMSupportURLSession + +- (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/private-frameworks/MobileDevice/src/MobileDevice.m b/src/private-frameworks/MobileDevice/src/MobileDevice.m new file mode 100644 index 000000000..f6fe27a16 --- /dev/null +++ b/src/private-frameworks/MobileDevice/src/MobileDevice.m @@ -0,0 +1,3600 @@ +/* + This file is part of Darling. + + Copyright (C) 2019 Lubos Dolezel + + Darling is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Darling is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General 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* AFCConnectionClose(void) +{ + if (verbose) puts("STUB: AFCConnectionClose called"); + return NULL; +} + +void* AFCConnectionCopyLastErrorInfo(void) +{ + if (verbose) puts("STUB: AFCConnectionCopyLastErrorInfo called"); + return NULL; +} + +void* AFCConnectionCreate(void) +{ + if (verbose) puts("STUB: AFCConnectionCreate called"); + return NULL; +} + +void* AFCConnectionGetContext(void) +{ + if (verbose) puts("STUB: AFCConnectionGetContext called"); + return NULL; +} + +void* AFCConnectionGetFSBlockSize(void) +{ + if (verbose) puts("STUB: AFCConnectionGetFSBlockSize called"); + return NULL; +} + +void* AFCConnectionGetIOTimeout(void) +{ + if (verbose) puts("STUB: AFCConnectionGetIOTimeout called"); + return NULL; +} + +void* AFCConnectionGetSecureContext(void) +{ + if (verbose) puts("STUB: AFCConnectionGetSecureContext called"); + return NULL; +} + +void* AFCConnectionGetSocketBlockSize(void) +{ + if (verbose) puts("STUB: AFCConnectionGetSocketBlockSize called"); + return NULL; +} + +void* AFCConnectionGetStatus(void) +{ + if (verbose) puts("STUB: AFCConnectionGetStatus called"); + return NULL; +} + +void* AFCConnectionGetTypeID(void) +{ + if (verbose) puts("STUB: AFCConnectionGetTypeID called"); + return NULL; +} + +void* AFCConnectionInvalidate(void) +{ + if (verbose) puts("STUB: AFCConnectionInvalidate called"); + return NULL; +} + +void* AFCConnectionIsValid(void) +{ + if (verbose) puts("STUB: AFCConnectionIsValid called"); + return NULL; +} + +void* AFCConnectionOpen(void) +{ + if (verbose) puts("STUB: AFCConnectionOpen called"); + return NULL; +} + +void* AFCConnectionProcessOperation(void) +{ + if (verbose) puts("STUB: AFCConnectionProcessOperation called"); + return NULL; +} + +void* AFCConnectionProcessOperations(void) +{ + if (verbose) puts("STUB: AFCConnectionProcessOperations called"); + return NULL; +} + +void* AFCConnectionScheduleWithRunLoop(void) +{ + if (verbose) puts("STUB: AFCConnectionScheduleWithRunLoop called"); + return NULL; +} + +void* AFCConnectionSetCallBack(void) +{ + if (verbose) puts("STUB: AFCConnectionSetCallBack called"); + return NULL; +} + +void* AFCConnectionSetContext(void) +{ + if (verbose) puts("STUB: AFCConnectionSetContext called"); + return NULL; +} + +void* AFCConnectionSetDisposeSecureContextOnInvalidate(void) +{ + if (verbose) puts("STUB: AFCConnectionSetDisposeSecureContextOnInvalidate called"); + return NULL; +} + +void* AFCConnectionSetFSBlockSize(void) +{ + if (verbose) puts("STUB: AFCConnectionSetFSBlockSize called"); + return NULL; +} + +void* AFCConnectionSetIOTimeout(void) +{ + if (verbose) puts("STUB: AFCConnectionSetIOTimeout called"); + return NULL; +} + +void* AFCConnectionSetSecureContext(void) +{ + if (verbose) puts("STUB: AFCConnectionSetSecureContext called"); + return NULL; +} + +void* AFCConnectionSetSocketBlockSize(void) +{ + if (verbose) puts("STUB: AFCConnectionSetSocketBlockSize called"); + return NULL; +} + +void* AFCConnectionSubmitOperation(void) +{ + if (verbose) puts("STUB: AFCConnectionSubmitOperation called"); + return NULL; +} + +void* AFCConnectionUnscheduleFromRunLoop(void) +{ + if (verbose) puts("STUB: AFCConnectionUnscheduleFromRunLoop called"); + return NULL; +} + +void* AFCCopyErrorString(void) +{ + if (verbose) puts("STUB: AFCCopyErrorString called"); + return NULL; +} + +void* AFCCopyPacketTypeString(void) +{ + if (verbose) puts("STUB: AFCCopyPacketTypeString called"); + return NULL; +} + +void* AFCDeviceInfoOpen(void) +{ + if (verbose) puts("STUB: AFCDeviceInfoOpen called"); + return NULL; +} + +void* AFCDirectoryClose(void) +{ + if (verbose) puts("STUB: AFCDirectoryClose called"); + return NULL; +} + +void* AFCDirectoryCreate(void) +{ + if (verbose) puts("STUB: AFCDirectoryCreate called"); + return NULL; +} + +void* AFCDirectoryOpen(void) +{ + if (verbose) puts("STUB: AFCDirectoryOpen called"); + return NULL; +} + +void* AFCDirectoryRead(void) +{ + if (verbose) puts("STUB: AFCDirectoryRead called"); + return NULL; +} + +void* AFCErrorString(void) +{ + if (verbose) puts("STUB: AFCErrorString called"); + return NULL; +} + +void* AFCFileDescriptorCreateCloseOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateCloseOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateGetPositionOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateGetPositionOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateLockOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateLockOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateReadAtPositionOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateReadAtPositionOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateReadOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateReadOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateSetImmutableHintOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateSetImmutableHintOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateSetPositionOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateSetPositionOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateSetSizeOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateSetSizeOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateUnlockOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateUnlockOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateWriteAtPositionOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateWriteAtPositionOperation called"); + return NULL; +} + +void* AFCFileDescriptorCreateWriteOperation(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorCreateWriteOperation called"); + return NULL; +} + +void* AFCFileDescriptorGetTypeID(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorGetTypeID called"); + return NULL; +} + +void* AFCFileDescriptorInvalidate(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorInvalidate called"); + return NULL; +} + +void* AFCFileDescriptorIsValid(void) +{ + if (verbose) puts("STUB: AFCFileDescriptorIsValid called"); + return NULL; +} + +void* AFCFileInfoOpen(void) +{ + if (verbose) puts("STUB: AFCFileInfoOpen called"); + return NULL; +} + +void* AFCFileRefClose(void) +{ + if (verbose) puts("STUB: AFCFileRefClose called"); + return NULL; +} + +void* AFCFileRefLock(void) +{ + if (verbose) puts("STUB: AFCFileRefLock called"); + return NULL; +} + +void* AFCFileRefOpen(void) +{ + if (verbose) puts("STUB: AFCFileRefOpen called"); + return NULL; +} + +void* AFCFileRefRead(void) +{ + if (verbose) puts("STUB: AFCFileRefRead called"); + return NULL; +} + +void* AFCFileRefSeek(void) +{ + if (verbose) puts("STUB: AFCFileRefSeek called"); + return NULL; +} + +void* AFCFileRefSetFileSize(void) +{ + if (verbose) puts("STUB: AFCFileRefSetFileSize called"); + return NULL; +} + +void* AFCFileRefTell(void) +{ + if (verbose) puts("STUB: AFCFileRefTell called"); + return NULL; +} + +void* AFCFileRefUnlock(void) +{ + if (verbose) puts("STUB: AFCFileRefUnlock called"); + return NULL; +} + +void* AFCFileRefWrite(void) +{ + if (verbose) puts("STUB: AFCFileRefWrite called"); + return NULL; +} + +void* AFCGetClientVersionString(void) +{ + if (verbose) puts("STUB: AFCGetClientVersionString called"); + return NULL; +} + +void* AFCKeyValueClose(void) +{ + if (verbose) puts("STUB: AFCKeyValueClose called"); + return NULL; +} + +void* AFCKeyValueRead(void) +{ + if (verbose) puts("STUB: AFCKeyValueRead called"); + return NULL; +} + +void* AFCLinkPath(void) +{ + if (verbose) puts("STUB: AFCLinkPath called"); + return NULL; +} + +void* AFCLog(void) +{ + if (verbose) puts("STUB: AFCLog called"); + return NULL; +} + +void* AFCOperationCopyPacketData(void) +{ + if (verbose) puts("STUB: AFCOperationCopyPacketData called"); + return NULL; +} + +void* AFCOperationCreateGetConnectionInfo(void) +{ + if (verbose) puts("STUB: AFCOperationCreateGetConnectionInfo called"); + return NULL; +} + +void* AFCOperationCreateGetDeviceInfo(void) +{ + if (verbose) puts("STUB: AFCOperationCreateGetDeviceInfo called"); + return NULL; +} + +void* AFCOperationCreateGetFileHash(void) +{ + if (verbose) puts("STUB: AFCOperationCreateGetFileHash called"); + return NULL; +} + +void* AFCOperationCreateGetFileHashWithRange(void) +{ + if (verbose) puts("STUB: AFCOperationCreateGetFileHashWithRange called"); + return NULL; +} + +void* AFCOperationCreateGetFileInfo(void) +{ + if (verbose) puts("STUB: AFCOperationCreateGetFileInfo called"); + return NULL; +} + +void* AFCOperationCreateGetSizeOfPathContents(void) +{ + if (verbose) puts("STUB: AFCOperationCreateGetSizeOfPathContents called"); + return NULL; +} + +void* AFCOperationCreateLinkPath(void) +{ + if (verbose) puts("STUB: AFCOperationCreateLinkPath called"); + return NULL; +} + +void* AFCOperationCreateMakeDirectory(void) +{ + if (verbose) puts("STUB: AFCOperationCreateMakeDirectory called"); + return NULL; +} + +void* AFCOperationCreateOpenFile(void) +{ + if (verbose) puts("STUB: AFCOperationCreateOpenFile called"); + return NULL; +} + +void* AFCOperationCreatePacketHeaderDictionary(void) +{ + if (verbose) puts("STUB: AFCOperationCreatePacketHeaderDictionary called"); + return NULL; +} + +void* AFCOperationCreateReadDirectory(void) +{ + if (verbose) puts("STUB: AFCOperationCreateReadDirectory called"); + return NULL; +} + +void* AFCOperationCreateRemovePath(void) +{ + if (verbose) puts("STUB: AFCOperationCreateRemovePath called"); + return NULL; +} + +void* AFCOperationCreateRemovePathAndContents(void) +{ + if (verbose) puts("STUB: AFCOperationCreateRemovePathAndContents called"); + return NULL; +} + +void* AFCOperationCreateRenamePath(void) +{ + if (verbose) puts("STUB: AFCOperationCreateRenamePath called"); + return NULL; +} + +void* AFCOperationCreateSetConnectionOptions(void) +{ + if (verbose) puts("STUB: AFCOperationCreateSetConnectionOptions called"); + return NULL; +} + +void* AFCOperationCreateSetModTime(void) +{ + if (verbose) puts("STUB: AFCOperationCreateSetModTime called"); + return NULL; +} + +void* AFCOperationGetContext(void) +{ + if (verbose) puts("STUB: AFCOperationGetContext called"); + return NULL; +} + +void* AFCOperationGetResultObject(void) +{ + if (verbose) puts("STUB: AFCOperationGetResultObject called"); + return NULL; +} + +void* AFCOperationGetResultStatus(void) +{ + if (verbose) puts("STUB: AFCOperationGetResultStatus called"); + return NULL; +} + +void* AFCOperationGetState(void) +{ + if (verbose) puts("STUB: AFCOperationGetState called"); + return NULL; +} + +void* AFCOperationGetTypeID(void) +{ + if (verbose) puts("STUB: AFCOperationGetTypeID called"); + return NULL; +} + +void* AFCOperationSetContext(void) +{ + if (verbose) puts("STUB: AFCOperationSetContext called"); + return NULL; +} + +void* AFCPlatformInitialize(void) +{ + if (verbose) puts("STUB: AFCPlatformInitialize called"); + return NULL; +} + +void* AFCRemovePath(void) +{ + if (verbose) puts("STUB: AFCRemovePath called"); + return NULL; +} + +void* AFCRenamePath(void) +{ + if (verbose) puts("STUB: AFCRenamePath called"); + return NULL; +} + +void* AFCSetLogLevel(void) +{ + if (verbose) puts("STUB: AFCSetLogLevel called"); + return NULL; +} + +void* AMAuthInstallApCopyImageTag(void) +{ + if (verbose) puts("STUB: AMAuthInstallApCopyImageTag called"); + return NULL; +} + +void* AMAuthInstallApCreateImageProperties(void) +{ + if (verbose) puts("STUB: AMAuthInstallApCreateImageProperties called"); + return NULL; +} + +void* AMAuthInstallApCreatePersonalizedResponse(void) +{ + if (verbose) puts("STUB: AMAuthInstallApCreatePersonalizedResponse called"); + return NULL; +} + +void* AMAuthInstallApExtractZippedDeviceMap(void) +{ + if (verbose) puts("STUB: AMAuthInstallApExtractZippedDeviceMap called"); + return NULL; +} + +void* AMAuthInstallApImg4CopyPayloadType(void) +{ + if (verbose) puts("STUB: AMAuthInstallApImg4CopyPayloadType called"); + return NULL; +} + +void* AMAuthInstallApImg4CreateServerRequestDictionary(void) +{ + if (verbose) puts("STUB: AMAuthInstallApImg4CreateServerRequestDictionary called"); + return NULL; +} + +void* AMAuthInstallApImg4CreateStitchTicket(void) +{ + if (verbose) puts("STUB: AMAuthInstallApImg4CreateStitchTicket called"); + return NULL; +} + +void* AMAuthInstallApImg4ForceLocalSigning(void) +{ + if (verbose) puts("STUB: AMAuthInstallApImg4ForceLocalSigning called"); + return NULL; +} + +void* AMAuthInstallApImg4PersonalizeFile(void) +{ + if (verbose) puts("STUB: AMAuthInstallApImg4PersonalizeFile called"); + return NULL; +} + +void* AMAuthInstallApImg4SetSepNonce(void) +{ + if (verbose) puts("STUB: AMAuthInstallApImg4SetSepNonce called"); + return NULL; +} + +void* AMAuthInstallApSetNonce(void) +{ + if (verbose) puts("STUB: AMAuthInstallApSetNonce called"); + return NULL; +} + +void* AMAuthInstallApSetParameters(void) +{ + if (verbose) puts("STUB: AMAuthInstallApSetParameters called"); + return NULL; +} + +void* AMAuthInstallCreate(void) +{ + if (verbose) puts("STUB: AMAuthInstallCreate called"); + return NULL; +} + +void* AMAuthInstallGetLocalizedStatusString(void) +{ + if (verbose) puts("STUB: AMAuthInstallGetLocalizedStatusString called"); + return NULL; +} + +void* AMAuthInstallLogSetHandler(void) +{ + if (verbose) puts("STUB: AMAuthInstallLogSetHandler called"); + return NULL; +} + +void* AMAuthInstallRequestSendSync(void) +{ + if (verbose) puts("STUB: AMAuthInstallRequestSendSync called"); + return NULL; +} + +void* AMAuthInstallSetSigningServerURL(void) +{ + if (verbose) puts("STUB: AMAuthInstallSetSigningServerURL called"); + return NULL; +} + +void* AMAuthInstallSsoEnable(void) +{ + if (verbose) puts("STUB: AMAuthInstallSsoEnable called"); + return NULL; +} + +void* AMAuthInstallSsoInitialize(void) +{ + if (verbose) puts("STUB: AMAuthInstallSsoInitialize called"); + return NULL; +} + +void* AMAuthInstallSupportCompareStringToInt32(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportCompareStringToInt32 called"); + return NULL; +} + +void* AMAuthInstallSupportCopyDataFromHexString(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportCopyDataFromHexString called"); + return NULL; +} + +void* AMAuthInstallSupportCopyURLToNewTempDirectory(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportCopyURLToNewTempDirectory called"); + return NULL; +} + +void* AMAuthInstallSupportCreateDataFromFileURL(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportCreateDataFromFileURL called"); + return NULL; +} + +void* AMAuthInstallSupportCreateDictionaryFromFileURL(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportCreateDictionaryFromFileURL called"); + return NULL; +} + +void* AMAuthInstallSupportDictionarySetBoolean(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportDictionarySetBoolean called"); + return NULL; +} + +void* AMAuthInstallSupportDictionarySetInteger32(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportDictionarySetInteger32 called"); + return NULL; +} + +void* AMAuthInstallSupportDictionarySetInteger64(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportDictionarySetInteger64 called"); + return NULL; +} + +void* AMAuthInstallSupportFileURLExists(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportFileURLExists called"); + return NULL; +} + +void* AMAuthInstallSupportGetLibraryVersionString(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportGetLibraryVersionString called"); + return NULL; +} + +void* AMAuthInstallSupportMakeDirectory(void) +{ + if (verbose) puts("STUB: AMAuthInstallSupportMakeDirectory called"); + return NULL; +} + +void* AMDCopyArrayOfDevicesMatchingQuery(void) +{ + if (verbose) puts("STUB: AMDCopyArrayOfDevicesMatchingQuery called"); + return NULL; +} + +void* AMDCopyAuthenticationIdentityForDevice(void) +{ + if (verbose) puts("STUB: AMDCopyAuthenticationIdentityForDevice called"); + return NULL; +} + +void* AMDCopyErrorText(void) +{ + if (verbose) puts("STUB: AMDCopyErrorText called"); + return NULL; +} + +void* AMDCopySystemBonjourUniqueID(void) +{ + if (verbose) puts("STUB: AMDCopySystemBonjourUniqueID called"); + return NULL; +} + +void* AMDCopyUDIDForPairingIdentity(void) +{ + if (verbose) puts("STUB: AMDCopyUDIDForPairingIdentity called"); + return NULL; +} + +void* AMDCreateDeviceList(void) +{ + if (verbose) puts("STUB: AMDCreateDeviceList called"); + return NULL; +} + +void* AMDErrorForMobileInstallationCallbackDict(void) +{ + if (verbose) puts("STUB: AMDErrorForMobileInstallationCallbackDict called"); + return NULL; +} + +void* AMDErrorString(void) +{ + if (verbose) puts("STUB: AMDErrorString called"); + return NULL; +} + +void* AMDFUModeDeviceCopyAPNonce(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceCopyAPNonce called"); + return NULL; +} + +void* AMDFUModeDeviceCopyAuthInstallPreflightOptions(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceCopyAuthInstallPreflightOptions called"); + return NULL; +} + +void* AMDFUModeDeviceCopyBoardConfig(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceCopyBoardConfig called"); + return NULL; +} + +void* AMDFUModeDeviceCopyEcid(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceCopyEcid called"); + return NULL; +} + +void* AMDFUModeDeviceCopySEPNonce(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceCopySEPNonce called"); + return NULL; +} + +void* AMDFUModeDeviceGetBoardID(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetBoardID called"); + return NULL; +} + +void* AMDFUModeDeviceGetChipID(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetChipID called"); + return NULL; +} + +void* AMDFUModeDeviceGetECID(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetECID called"); + return NULL; +} + +void* AMDFUModeDeviceGetEffectiveProductionMode(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetEffectiveProductionMode called"); + return NULL; +} + +void* AMDFUModeDeviceGetEffectiveSecurityMode(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetEffectiveSecurityMode called"); + return NULL; +} + +void* AMDFUModeDeviceGetImage4Aware(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetImage4Aware called"); + return NULL; +} + +void* AMDFUModeDeviceGetLocationID(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetLocationID called"); + return NULL; +} + +void* AMDFUModeDeviceGetOperation(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetOperation called"); + return NULL; +} + +void* AMDFUModeDeviceGetProductID(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetProductID called"); + return NULL; +} + +void* AMDFUModeDeviceGetProductType(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetProductType called"); + return NULL; +} + +void* AMDFUModeDeviceGetProductionMode(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetProductionMode called"); + return NULL; +} + +void* AMDFUModeDeviceGetProgress(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetProgress called"); + return NULL; +} + +void* AMDFUModeDeviceGetSecurityDomain(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetSecurityDomain called"); + return NULL; +} + +void* AMDFUModeDeviceGetSecurityEpoch(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetSecurityEpoch called"); + return NULL; +} + +void* AMDFUModeDeviceGetSecurityMode(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetSecurityMode called"); + return NULL; +} + +void* AMDFUModeDeviceGetTypeID(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceGetTypeID called"); + return NULL; +} + +void* AMDFUModeDeviceIsBootstrapOnly(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceIsBootstrapOnly called"); + return NULL; +} + +void* AMDFUModeDeviceRequestAbbreviatedSendSync(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceRequestAbbreviatedSendSync called"); + return NULL; +} + +void* AMDFUModeDeviceResetAuthInstallSettings(void) +{ + if (verbose) puts("STUB: AMDFUModeDeviceResetAuthInstallSettings called"); + return NULL; +} + +void* AMDGetBundleVersion(void) +{ + if (verbose) puts("STUB: AMDGetBundleVersion called"); + return NULL; +} + +void* AMDGetPairingRecordDirectoryPath(void) +{ + if (verbose) puts("STUB: AMDGetPairingRecordDirectoryPath called"); + return NULL; +} + +void* AMDListenForNotifications(void) +{ + if (verbose) puts("STUB: AMDListenForNotifications called"); + return NULL; +} + +void* AMDObserveNotification(void) +{ + if (verbose) puts("STUB: AMDObserveNotification called"); + return NULL; +} + +void* AMDPostNotification(void) +{ + if (verbose) puts("STUB: AMDPostNotification called"); + return NULL; +} + +void* AMDSecureListenForNotifications(void) +{ + if (verbose) puts("STUB: AMDSecureListenForNotifications called"); + return NULL; +} + +void* AMDSecureListenForNotificationsWithRetainedContext(void) +{ + if (verbose) puts("STUB: AMDSecureListenForNotificationsWithRetainedContext called"); + return NULL; +} + +void* AMDSecureObserveNotification(void) +{ + if (verbose) puts("STUB: AMDSecureObserveNotification called"); + return NULL; +} + +void* AMDSecurePostNotification(void) +{ + if (verbose) puts("STUB: AMDSecurePostNotification called"); + return NULL; +} + +void* AMDSecureShutdownNotificationProxy(void) +{ + if (verbose) puts("STUB: AMDSecureShutdownNotificationProxy called"); + return NULL; +} + +void* AMDServiceConnectionBufferedReadSize(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionBufferedReadSize called"); + return NULL; +} + +void* AMDServiceConnectionCreate(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionCreate called"); + return NULL; +} + +void* AMDServiceConnectionGetSecureIOContext(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionGetSecureIOContext called"); + return NULL; +} + +void* AMDServiceConnectionGetSocket(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionGetSocket called"); + return NULL; +} + +void* AMDServiceConnectionGetTypeID(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionGetTypeID called"); + return NULL; +} + +void* AMDServiceConnectionInvalidate(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionInvalidate called"); + return NULL; +} + +void* AMDServiceConnectionReceive(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionReceive called"); + return NULL; +} + +void* AMDServiceConnectionReceiveMessage(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionReceiveMessage called"); + return NULL; +} + +void* AMDServiceConnectionSend(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionSend called"); + return NULL; +} + +void* AMDServiceConnectionSendMessage(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionSendMessage called"); + return NULL; +} + +void* AMDServiceConnectionSetDevice(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionSetDevice called"); + return NULL; +} + +void* AMDServiceConnectionSetServiceName(void) +{ + if (verbose) puts("STUB: AMDServiceConnectionSetServiceName called"); + return NULL; +} + +void* AMDSetLogLevel(void) +{ + if (verbose) puts("STUB: AMDSetLogLevel called"); + return NULL; +} + +void* AMDShutdownNotificationProxy(void) +{ + if (verbose) puts("STUB: AMDShutdownNotificationProxy called"); + return NULL; +} + +void* AMDeviceActivate(void) +{ + if (verbose) puts("STUB: AMDeviceActivate called"); + return NULL; +} + +void* AMDeviceActivateWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceActivateWithOptions called"); + return NULL; +} + +void* AMDeviceArchiveApplication(void) +{ + if (verbose) puts("STUB: AMDeviceArchiveApplication called"); + return NULL; +} + +void* AMDeviceCheckCapabilitiesMatch(void) +{ + if (verbose) puts("STUB: AMDeviceCheckCapabilitiesMatch called"); + return NULL; +} + +void* AMDeviceConnect(void) +{ + if (verbose) puts("STUB: AMDeviceConnect called"); + return NULL; +} + +void* AMDeviceCopyAuthInstallPreflightOptions(void) +{ + if (verbose) puts("STUB: AMDeviceCopyAuthInstallPreflightOptions called"); + return NULL; +} + +void* AMDeviceCopyDeviceIdentifier(void) +{ + if (verbose) puts("STUB: AMDeviceCopyDeviceIdentifier called"); + return NULL; +} + +void* AMDeviceCopyDeviceLocation(void) +{ + if (verbose) puts("STUB: AMDeviceCopyDeviceLocation called"); + return NULL; +} + +void* AMDeviceCopyDeviceUSBSerialNumber(void) +{ + if (verbose) puts("STUB: AMDeviceCopyDeviceUSBSerialNumber called"); + return NULL; +} + +void* AMDeviceCopyFDRPreflightOptions(void) +{ + if (verbose) puts("STUB: AMDeviceCopyFDRPreflightOptions called"); + return NULL; +} + +void* AMDeviceCopyMultipleValuesWithError(void) +{ + if (verbose) puts("STUB: AMDeviceCopyMultipleValuesWithError called"); + return NULL; +} + +void* AMDeviceCopyPairedCompanion(void) +{ + if (verbose) puts("STUB: AMDeviceCopyPairedCompanion called"); + return NULL; +} + +void* AMDeviceCopyPairedWatch(void) +{ + if (verbose) puts("STUB: AMDeviceCopyPairedWatch called"); + return NULL; +} + +void* AMDeviceCopyPersonalizationNonce(void) +{ + if (verbose) puts("STUB: AMDeviceCopyPersonalizationNonce called"); + return NULL; +} + +void* AMDeviceCopyPersonalizationNonceBridgeOS(void) +{ + if (verbose) puts("STUB: AMDeviceCopyPersonalizationNonceBridgeOS called"); + return NULL; +} + +void* AMDeviceCopyProvisioningProfiles(void) +{ + if (verbose) puts("STUB: AMDeviceCopyProvisioningProfiles called"); + return NULL; +} + +void* AMDeviceCopyValue(void) +{ + if (verbose) puts("STUB: AMDeviceCopyValue called"); + return NULL; +} + +void* AMDeviceCopyValueWithError(void) +{ + if (verbose) puts("STUB: AMDeviceCopyValueWithError called"); + return NULL; +} + +void* AMDeviceCreate(void) +{ + if (verbose) puts("STUB: AMDeviceCreate called"); + return NULL; +} + +void* AMDeviceCreateActivationInfo(void) +{ + if (verbose) puts("STUB: AMDeviceCreateActivationInfo called"); + return NULL; +} + +void* AMDeviceCreateActivationInfoWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceCreateActivationInfoWithOptions called"); + return NULL; +} + +void* AMDeviceCreateActivationSessionInfo(void) +{ + if (verbose) puts("STUB: AMDeviceCreateActivationSessionInfo called"); + return NULL; +} + +void* AMDeviceCreateCopy(void) +{ + if (verbose) puts("STUB: AMDeviceCreateCopy called"); + return NULL; +} + +void* AMDeviceCreateFromProperties(void) +{ + if (verbose) puts("STUB: AMDeviceCreateFromProperties called"); + return NULL; +} + +void* AMDeviceCreateHouseArrestService(void) +{ + if (verbose) puts("STUB: AMDeviceCreateHouseArrestService called"); + return NULL; +} + +void* AMDeviceCreateSRPConnection(void) +{ + if (verbose) puts("STUB: AMDeviceCreateSRPConnection called"); + return NULL; +} + +void* AMDeviceCreateWakeupToken(void) +{ + if (verbose) puts("STUB: AMDeviceCreateWakeupToken called"); + return NULL; +} + +void* AMDeviceDeactivate(void) +{ + if (verbose) puts("STUB: AMDeviceDeactivate called"); + return NULL; +} + +void* AMDeviceDeleteHostPairingRecordForUDID(void) +{ + if (verbose) puts("STUB: AMDeviceDeleteHostPairingRecordForUDID called"); + return NULL; +} + +void* AMDeviceDisconnect(void) +{ + if (verbose) puts("STUB: AMDeviceDisconnect called"); + return NULL; +} + +void* AMDeviceEnterRecovery(void) +{ + if (verbose) puts("STUB: AMDeviceEnterRecovery called"); + return NULL; +} + +void* AMDeviceExtendedPairWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceExtendedPairWithOptions called"); + return NULL; +} + +void* AMDeviceGetConnectionID(void) +{ + if (verbose) puts("STUB: AMDeviceGetConnectionID called"); + return NULL; +} + +void* AMDeviceGetInterfaceSpeed(void) +{ + if (verbose) puts("STUB: AMDeviceGetInterfaceSpeed called"); + return NULL; +} + +void* AMDeviceGetInterfaceType(void) +{ + if (verbose) puts("STUB: AMDeviceGetInterfaceType called"); + return NULL; +} + +void* AMDeviceGetLocalOrRemoteOffsetToResume(void) +{ + if (verbose) puts("STUB: AMDeviceGetLocalOrRemoteOffsetToResume called"); + return NULL; +} + +void* AMDeviceGetName(void) +{ + if (verbose) puts("STUB: AMDeviceGetName called"); + return NULL; +} + +void* AMDeviceGetTypeID(void) +{ + if (verbose) puts("STUB: AMDeviceGetTypeID called"); + return NULL; +} + +void* AMDeviceGetUserInfo(void) +{ + if (verbose) puts("STUB: AMDeviceGetUserInfo called"); + return NULL; +} + +void* AMDeviceGetWirelessBuddyFlags(void) +{ + if (verbose) puts("STUB: AMDeviceGetWirelessBuddyFlags called"); + return NULL; +} + +void* AMDeviceImageMounted(void) +{ + if (verbose) puts("STUB: AMDeviceImageMounted called"); + return NULL; +} + +void* AMDeviceImageMountedBridgeOS(void) +{ + if (verbose) puts("STUB: AMDeviceImageMountedBridgeOS called"); + return NULL; +} + +void* AMDeviceImageMountedMacOS(void) +{ + if (verbose) puts("STUB: AMDeviceImageMountedMacOS called"); + return NULL; +} + +void* AMDeviceInstallApplication(void) +{ + if (verbose) puts("STUB: AMDeviceInstallApplication called"); + return NULL; +} + +void* AMDeviceInstallProvisioningProfile(void) +{ + if (verbose) puts("STUB: AMDeviceInstallProvisioningProfile called"); + return NULL; +} + +void* AMDeviceIsAtLeastVersionOnPlatform(void) +{ + if (verbose) puts("STUB: AMDeviceIsAtLeastVersionOnPlatform called"); + return NULL; +} + +void* AMDeviceIsPaired(void) +{ + if (verbose) puts("STUB: AMDeviceIsPaired called"); + return NULL; +} + +void* AMDeviceIsValid(void) +{ + if (verbose) puts("STUB: AMDeviceIsValid called"); + return NULL; +} + +void* AMDeviceIsWiFiPairableRef(void) +{ + if (verbose) puts("STUB: AMDeviceIsWiFiPairableRef called"); + return NULL; +} + +void* AMDeviceLookupApplicationArchives(void) +{ + if (verbose) puts("STUB: AMDeviceLookupApplicationArchives called"); + return NULL; +} + +void* AMDeviceLookupApplications(void) +{ + if (verbose) puts("STUB: AMDeviceLookupApplications called"); + return NULL; +} + +void* AMDeviceMountImage(void) +{ + if (verbose) puts("STUB: AMDeviceMountImage called"); + return NULL; +} + +void* AMDeviceMountImageBridgeOS(void) +{ + if (verbose) puts("STUB: AMDeviceMountImageBridgeOS called"); + return NULL; +} + +void* AMDeviceMountImageMacOS(void) +{ + if (verbose) puts("STUB: AMDeviceMountImageMacOS called"); + return NULL; +} + +void* AMDeviceMountImageOnHost(void) +{ + if (verbose) puts("STUB: AMDeviceMountImageOnHost called"); + return NULL; +} + +void* AMDeviceMountPersonalizedBundle(void) +{ + if (verbose) puts("STUB: AMDeviceMountPersonalizedBundle called"); + return NULL; +} + +void* AMDeviceMountPersonalizedBundleBridgeOS(void) +{ + if (verbose) puts("STUB: AMDeviceMountPersonalizedBundleBridgeOS called"); + return NULL; +} + +void* AMDeviceNotificationSubscribe(void) +{ + if (verbose) puts("STUB: AMDeviceNotificationSubscribe called"); + return NULL; +} + +void* AMDeviceNotificationSubscribeWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceNotificationSubscribeWithOptions called"); + return NULL; +} + +void* AMDeviceNotificationUnsubscribe(void) +{ + if (verbose) puts("STUB: AMDeviceNotificationUnsubscribe called"); + return NULL; +} + +void* AMDevicePair(void) +{ + if (verbose) puts("STUB: AMDevicePair called"); + return NULL; +} + +void* AMDevicePairWithCallback(void) +{ + if (verbose) puts("STUB: AMDevicePairWithCallback called"); + return NULL; +} + +void* AMDevicePairWithOptions(void) +{ + if (verbose) puts("STUB: AMDevicePairWithOptions called"); + return NULL; +} + +void* AMDevicePowerAssertionCreate(void) +{ + if (verbose) puts("STUB: AMDevicePowerAssertionCreate called"); + return NULL; +} + +void* AMDevicePowerAssertionGetTypeID(void) +{ + if (verbose) puts("STUB: AMDevicePowerAssertionGetTypeID called"); + return NULL; +} + +void* AMDevicePreflightOperationCreate(void) +{ + if (verbose) puts("STUB: AMDevicePreflightOperationCreate called"); + return NULL; +} + +void* AMDevicePreflightOperationGetRunLoopSource(void) +{ + if (verbose) puts("STUB: AMDevicePreflightOperationGetRunLoopSource called"); + return NULL; +} + +void* AMDevicePreflightOperationGetTypeID(void) +{ + if (verbose) puts("STUB: AMDevicePreflightOperationGetTypeID called"); + return NULL; +} + +void* AMDevicePreflightOperationInvalidate(void) +{ + if (verbose) puts("STUB: AMDevicePreflightOperationInvalidate called"); + return NULL; +} + +void* AMDeviceRegisterForCUNotificationsWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceRegisterForCUNotificationsWithOptions called"); + return NULL; +} + +void* AMDeviceRegisterForCUStateNotificationsWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceRegisterForCUStateNotificationsWithOptions called"); + return NULL; +} + +void* AMDeviceRelayFile(void) +{ + if (verbose) puts("STUB: AMDeviceRelayFile called"); + return NULL; +} + +void* AMDeviceRelease(void) +{ + if (verbose) puts("STUB: AMDeviceRelease called"); + return NULL; +} + +void* AMDeviceRemoveApplicationArchive(void) +{ + if (verbose) puts("STUB: AMDeviceRemoveApplicationArchive called"); + return NULL; +} + +void* AMDeviceRemoveProvisioningProfile(void) +{ + if (verbose) puts("STUB: AMDeviceRemoveProvisioningProfile called"); + return NULL; +} + +void* AMDeviceRemoveValue(void) +{ + if (verbose) puts("STUB: AMDeviceRemoveValue called"); + return NULL; +} + +void* AMDeviceRequestAbbreviatedSendSync(void) +{ + if (verbose) puts("STUB: AMDeviceRequestAbbreviatedSendSync called"); + return NULL; +} + +void* AMDeviceRestoreApplication(void) +{ + if (verbose) puts("STUB: AMDeviceRestoreApplication called"); + return NULL; +} + +void* AMDeviceRetain(void) +{ + if (verbose) puts("STUB: AMDeviceRetain called"); + return NULL; +} + +void* AMDeviceSecureArchiveApplication(void) +{ + if (verbose) puts("STUB: AMDeviceSecureArchiveApplication called"); + return NULL; +} + +void* AMDeviceSecureCheckCapabilitiesMatch(void) +{ + if (verbose) puts("STUB: AMDeviceSecureCheckCapabilitiesMatch called"); + return NULL; +} + +void* AMDeviceSecureInstallApplication(void) +{ + if (verbose) puts("STUB: AMDeviceSecureInstallApplication called"); + return NULL; +} + +void* AMDeviceSecureInstallApplicationBundle(void) +{ + if (verbose) puts("STUB: AMDeviceSecureInstallApplicationBundle called"); + return NULL; +} + +void* AMDeviceSecureRemoveApplicationArchive(void) +{ + if (verbose) puts("STUB: AMDeviceSecureRemoveApplicationArchive called"); + return NULL; +} + +void* AMDeviceSecureRestoreApplication(void) +{ + if (verbose) puts("STUB: AMDeviceSecureRestoreApplication called"); + return NULL; +} + +void* AMDeviceSecureStartService(void) +{ + if (verbose) puts("STUB: AMDeviceSecureStartService called"); + return NULL; +} + +void* AMDeviceSecureTransferPath(void) +{ + if (verbose) puts("STUB: AMDeviceSecureTransferPath called"); + return NULL; +} + +void* AMDeviceSecureUninstallApplication(void) +{ + if (verbose) puts("STUB: AMDeviceSecureUninstallApplication called"); + return NULL; +} + +void* AMDeviceSecureUpgradeApplication(void) +{ + if (verbose) puts("STUB: AMDeviceSecureUpgradeApplication called"); + return NULL; +} + +void* AMDeviceSetUserInfo(void) +{ + if (verbose) puts("STUB: AMDeviceSetUserInfo called"); + return NULL; +} + +void* AMDeviceSetValue(void) +{ + if (verbose) puts("STUB: AMDeviceSetValue called"); + return NULL; +} + +void* AMDeviceSetWirelessBuddyFlags(void) +{ + if (verbose) puts("STUB: AMDeviceSetWirelessBuddyFlags called"); + return NULL; +} + +void* AMDeviceStartHouseArrestService(void) +{ + if (verbose) puts("STUB: AMDeviceStartHouseArrestService called"); + return NULL; +} + +void* AMDeviceStartService(void) +{ + if (verbose) puts("STUB: AMDeviceStartService called"); + return NULL; +} + +void* AMDeviceStartServiceWithOptions(void) +{ + if (verbose) puts("STUB: AMDeviceStartServiceWithOptions called"); + return NULL; +} + +void* AMDeviceStartSession(void) +{ + if (verbose) puts("STUB: AMDeviceStartSession called"); + return NULL; +} + +void* AMDeviceStopSession(void) +{ + if (verbose) puts("STUB: AMDeviceStopSession called"); + return NULL; +} + +void* AMDeviceTransferApplication(void) +{ + if (verbose) puts("STUB: AMDeviceTransferApplication called"); + return NULL; +} + +void* AMDeviceTransferPath(void) +{ + if (verbose) puts("STUB: AMDeviceTransferPath called"); + return NULL; +} + +void* AMDeviceUSBDeviceID(void) +{ + if (verbose) puts("STUB: AMDeviceUSBDeviceID called"); + return NULL; +} + +void* AMDeviceUSBLocationID(void) +{ + if (verbose) puts("STUB: AMDeviceUSBLocationID called"); + return NULL; +} + +void* AMDeviceUSBProductID(void) +{ + if (verbose) puts("STUB: AMDeviceUSBProductID called"); + return NULL; +} + +void* AMDeviceUninstallApplication(void) +{ + if (verbose) puts("STUB: AMDeviceUninstallApplication called"); + return NULL; +} + +void* AMDeviceUnmountImageOnHost(void) +{ + if (verbose) puts("STUB: AMDeviceUnmountImageOnHost called"); + return NULL; +} + +void* AMDeviceUnpair(void) +{ + if (verbose) puts("STUB: AMDeviceUnpair called"); + return NULL; +} + +void* AMDeviceUpgradeApplication(void) +{ + if (verbose) puts("STUB: AMDeviceUpgradeApplication called"); + return NULL; +} + +void* AMDeviceValidatePairing(void) +{ + if (verbose) puts("STUB: AMDeviceValidatePairing called"); + return NULL; +} + +void* AMDeviceVerifySRPConnection(void) +{ + if (verbose) puts("STUB: AMDeviceVerifySRPConnection called"); + return NULL; +} + +void* AMDeviceWakeupOperationCreateWithToken(void) +{ + if (verbose) puts("STUB: AMDeviceWakeupOperationCreateWithToken called"); + return NULL; +} + +void* AMDeviceWakeupOperationGetTypeID(void) +{ + if (verbose) puts("STUB: AMDeviceWakeupOperationGetTypeID called"); + return NULL; +} + +void* AMDeviceWakeupOperationInvalidate(void) +{ + if (verbose) puts("STUB: AMDeviceWakeupOperationInvalidate called"); + return NULL; +} + +void* AMDeviceWakeupOperationSchedule(void) +{ + if (verbose) puts("STUB: AMDeviceWakeupOperationSchedule called"); + return NULL; +} + +void* AMDeviceWakeupUsingToken(void) +{ + if (verbose) puts("STUB: AMDeviceWakeupUsingToken called"); + return NULL; +} + +void* AMRAuthInstallCopyLocalizedStringForServerError(void) +{ + if (verbose) puts("STUB: AMRAuthInstallCopyLocalizedStringForServerError called"); + return NULL; +} + +void* AMRAuthInstallCopyPreflightOptions(void) +{ + if (verbose) puts("STUB: AMRAuthInstallCopyPreflightOptions called"); + return NULL; +} + +void* AMRAuthInstallCreateOptionsForBootstrapDevice(void) +{ + if (verbose) puts("STUB: AMRAuthInstallCreateOptionsForBootstrapDevice called"); + return NULL; +} + +void* AMRAuthInstallFinalize(void) +{ + if (verbose) puts("STUB: AMRAuthInstallFinalize called"); + return NULL; +} + +void* AMRAuthInstallPreflight(void) +{ + if (verbose) puts("STUB: AMRAuthInstallPreflight called"); + return NULL; +} + +void* AMRLocalizedCopyStringForAMRError(void) +{ + if (verbose) puts("STUB: AMRLocalizedCopyStringForAMRError called"); + return NULL; +} + +void* AMRLocalizedCopyStringForAMROperation(void) +{ + if (verbose) puts("STUB: AMRLocalizedCopyStringForAMROperation called"); + return NULL; +} + +void* AMRLog(void) +{ + if (verbose) puts("STUB: AMRLog called"); + return NULL; +} + +void* AMRLogv(void) +{ + if (verbose) puts("STUB: AMRLogv called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopyAPNonce(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopyAPNonce called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopyAuthInstallPreflightOptions(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopyAuthInstallPreflightOptions called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopyBoardConfig(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopyBoardConfig called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopyEcid(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopyEcid called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopyEnvironmentVariableFromDevice(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopyEnvironmentVariableFromDevice called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopyIMEI(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopyIMEI called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopySEPNonce(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopySEPNonce called"); + return NULL; +} + +void* AMRecoveryModeDeviceCopySerialNumber(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCopySerialNumber called"); + return NULL; +} + +void* AMRecoveryModeDeviceCreateWithIOService(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceCreateWithIOService called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetBoardID(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetBoardID called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetChipID(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetChipID called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetECID(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetECID called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetEffectiveProductionMode(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetEffectiveProductionMode called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetEffectiveSecurityMode(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetEffectiveSecurityMode called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetLocationID(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetLocationID called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetProductID(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetProductID called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetProductType(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetProductType called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetProductionMode(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetProductionMode called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetProgress(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetProgress called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetSecurityEpoch(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetSecurityEpoch called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetSecurityMode(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetSecurityMode called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetSupportedImageFormat(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetSupportedImageFormat called"); + return NULL; +} + +void* AMRecoveryModeDeviceGetTypeID(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceGetTypeID called"); + return NULL; +} + +void* AMRecoveryModeDeviceIsBootstrapOnly(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceIsBootstrapOnly called"); + return NULL; +} + +void* AMRecoveryModeDeviceReboot(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceReboot called"); + return NULL; +} + +void* AMRecoveryModeDeviceRequestAbbreviatedSendSync(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceRequestAbbreviatedSendSync called"); + return NULL; +} + +void* AMRecoveryModeDeviceSendBlindCommandToDevice(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceSendBlindCommandToDevice called"); + return NULL; +} + +void* AMRecoveryModeDeviceSendCommandToDevice(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceSendCommandToDevice called"); + return NULL; +} + +void* AMRecoveryModeDeviceSendFileToDevice(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceSendFileToDevice called"); + return NULL; +} + +void* AMRecoveryModeDeviceSetAutoBoot(void) +{ + if (verbose) puts("STUB: AMRecoveryModeDeviceSetAutoBoot called"); + return NULL; +} + +void* AMRecoveryModeGetSoftwareBuildVersion(void) +{ + if (verbose) puts("STUB: AMRecoveryModeGetSoftwareBuildVersion called"); + return NULL; +} + +void* AMRestorableAttemptMuxRegistration(void) +{ + if (verbose) puts("STUB: AMRestorableAttemptMuxRegistration called"); + return NULL; +} + +void* AMRestorableBuildCopyRestoreBundleURL(void) +{ + if (verbose) puts("STUB: AMRestorableBuildCopyRestoreBundleURL called"); + return NULL; +} + +void* AMRestorableBuildCopySupportedBoardConfigs(void) +{ + if (verbose) puts("STUB: AMRestorableBuildCopySupportedBoardConfigs called"); + return NULL; +} + +void* AMRestorableBuildCopySupportedVariants(void) +{ + if (verbose) puts("STUB: AMRestorableBuildCopySupportedVariants called"); + return NULL; +} + +void* AMRestorableBuildCreate(void) +{ + if (verbose) puts("STUB: AMRestorableBuildCreate called"); + return NULL; +} + +void* AMRestorableCommitStashBag(void) +{ + if (verbose) puts("STUB: AMRestorableCommitStashBag called"); + return NULL; +} + +void* AMRestorableCommitStashBagWithManifest(void) +{ + if (verbose) puts("STUB: AMRestorableCommitStashBagWithManifest called"); + return NULL; +} + +void* AMRestorableCommitStashBagWithRestoreOptions(void) +{ + if (verbose) puts("STUB: AMRestorableCommitStashBagWithRestoreOptions called"); + return NULL; +} + +void* AMRestorableDeviceCopyAMDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyAMDevice called"); + return NULL; +} + +void* AMRestorableDeviceCopyAuthInstallPreflightOptions(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyAuthInstallPreflightOptions called"); + return NULL; +} + +void* AMRestorableDeviceCopyBoardConfig(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyBoardConfig called"); + return NULL; +} + +void* AMRestorableDeviceCopyDFUModeDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyDFUModeDevice called"); + return NULL; +} + +void* AMRestorableDeviceCopyDefaultRestoreOptions(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyDefaultRestoreOptions called"); + return NULL; +} + +void* AMRestorableDeviceCopyEnvironmentVariable(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyEnvironmentVariable called"); + return NULL; +} + +void* AMRestorableDeviceCopyMDRemoteServiceDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyMDRemoteServiceDevice called"); + return NULL; +} + +void* AMRestorableDeviceCopyProductString(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyProductString called"); + return NULL; +} + +void* AMRestorableDeviceCopyRecoveryModeDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyRecoveryModeDevice called"); + return NULL; +} + +void* AMRestorableDeviceCopyRestoreModeDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyRestoreModeDevice called"); + return NULL; +} + +void* AMRestorableDeviceCopyRestoreOptionsFromDocument(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyRestoreOptionsFromDocument called"); + return NULL; +} + +void* AMRestorableDeviceCopySerialDevicePath(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopySerialDevicePath called"); + return NULL; +} + +void* AMRestorableDeviceCopySerialDeviceSWDName(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopySerialDeviceSWDName called"); + return NULL; +} + +void* AMRestorableDeviceCopySerialNumber(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopySerialNumber called"); + return NULL; +} + +void* AMRestorableDeviceCopyUserFriendlyName(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCopyUserFriendlyName called"); + return NULL; +} + +void* AMRestorableDeviceCreateFromAMDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceCreateFromAMDevice called"); + return NULL; +} + +void* AMRestorableDeviceEnableExtraDFUDevices(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceEnableExtraDFUDevices called"); + return NULL; +} + +void* AMRestorableDeviceGetBoardID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetBoardID called"); + return NULL; +} + +void* AMRestorableDeviceGetChipID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetChipID called"); + return NULL; +} + +void* AMRestorableDeviceGetDFUModeDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetDFUModeDevice called"); + return NULL; +} + +void* AMRestorableDeviceGetDeviceClass(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetDeviceClass called"); + return NULL; +} + +void* AMRestorableDeviceGetDeviceMapEntryForBoardAndChipID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetDeviceMapEntryForBoardAndChipID called"); + return NULL; +} + +void* AMRestorableDeviceGetECID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetECID called"); + return NULL; +} + +void* AMRestorableDeviceGetFusingInfo(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetFusingInfo called"); + return NULL; +} + +void* AMRestorableDeviceGetLocationID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetLocationID called"); + return NULL; +} + +void* AMRestorableDeviceGetProductID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetProductID called"); + return NULL; +} + +void* AMRestorableDeviceGetProductType(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetProductType called"); + return NULL; +} + +void* AMRestorableDeviceGetRecoveryModeDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetRecoveryModeDevice called"); + return NULL; +} + +void* AMRestorableDeviceGetRestoreOperationsQueue(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetRestoreOperationsQueue called"); + return NULL; +} + +void* AMRestorableDeviceGetState(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetState called"); + return NULL; +} + +void* AMRestorableDeviceGetTypeID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceGetTypeID called"); + return NULL; +} + +void* AMRestorableDeviceIsInDeviceClass(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceIsInDeviceClass called"); + return NULL; +} + +void* AMRestorableDeviceNeedsUpdatedFramework(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceNeedsUpdatedFramework called"); + return NULL; +} + +void* AMRestorableDeviceRegisterForNotifications(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceRegisterForNotifications called"); + return NULL; +} + +void* AMRestorableDeviceRegisterForNotificationsForDevices(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceRegisterForNotificationsForDevices called"); + return NULL; +} + +void* AMRestorableDeviceRestore(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceRestore called"); + return NULL; +} + +void* AMRestorableDeviceRestoreWithError(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceRestoreWithError called"); + return NULL; +} + +void* AMRestorableDeviceSendBlindCommand(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceSendBlindCommand called"); + return NULL; +} + +void* AMRestorableDeviceSendCommand(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceSendCommand called"); + return NULL; +} + +void* AMRestorableDeviceSendFile(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceSendFile called"); + return NULL; +} + +void* AMRestorableDeviceSetLogFileURL(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceSetLogFileURL called"); + return NULL; +} + +void* AMRestorableDeviceSetProxyCredentialsCallback(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceSetProxyCredentialsCallback called"); + return NULL; +} + +void* AMRestorableDeviceTriggerUpdateForBoardAndChipIDWithPrompt(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceTriggerUpdateForBoardAndChipIDWithPrompt called"); + return NULL; +} + +void* AMRestorableDeviceTriggerUpdateForDeviceWithPrompt(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceTriggerUpdateForDeviceWithPrompt called"); + return NULL; +} + +void* AMRestorableDeviceUnregisterForNotifications(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceUnregisterForNotifications called"); + return NULL; +} + +void* AMRestorableDeviceUpdateAvailableForBoardAndChipID(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceUpdateAvailableForBoardAndChipID called"); + return NULL; +} + +void* AMRestorableDeviceUpdateAvailableForDevice(void) +{ + if (verbose) puts("STUB: AMRestorableDeviceUpdateAvailableForDevice called"); + return NULL; +} + +void* AMRestorableEnableLogStreaming(void) +{ + if (verbose) puts("STUB: AMRestorableEnableLogStreaming called"); + return NULL; +} + +void* AMRestorableGetCheckpointData(void) +{ + if (verbose) puts("STUB: AMRestorableGetCheckpointData called"); + return NULL; +} + +void* AMRestorableGetIdentifyingErrorCode(void) +{ + if (verbose) puts("STUB: AMRestorableGetIdentifyingErrorCode called"); + return NULL; +} + +void* AMRestorableLogToFile(void) +{ + if (verbose) puts("STUB: AMRestorableLogToFile called"); + return NULL; +} + +void* AMRestorablePersonalizeCopyManifestTag(void) +{ + if (verbose) puts("STUB: AMRestorablePersonalizeCopyManifestTag called"); + return NULL; +} + +void* AMRestorablePersonalizeSendFile(void) +{ + if (verbose) puts("STUB: AMRestorablePersonalizeSendFile called"); + return NULL; +} + +void* AMRestorableSetCheckpointData(void) +{ + if (verbose) puts("STUB: AMRestorableSetCheckpointData called"); + return NULL; +} + +void* AMRestorableSetGlobalLocationIDFilter(void) +{ + if (verbose) puts("STUB: AMRestorableSetGlobalLocationIDFilter called"); + return NULL; +} + +void* AMRestorableSetGlobalLogFileURL(void) +{ + if (verbose) puts("STUB: AMRestorableSetGlobalLogFileURL called"); + return NULL; +} + +void* AMRestorableSetLogLevel(void) +{ + if (verbose) puts("STUB: AMRestorableSetLogLevel called"); + return NULL; +} + +void* AMRestoreCopyNormalizedBoardConfig(void) +{ + if (verbose) puts("STUB: AMRestoreCopyNormalizedBoardConfig called"); + return NULL; +} + +void* AMRestoreCopySystemRestoreImagePath(void) +{ + if (verbose) puts("STUB: AMRestoreCopySystemRestoreImagePath called"); + return NULL; +} + +void* AMRestoreCreateBootArgsByAddingArg(void) +{ + if (verbose) puts("STUB: AMRestoreCreateBootArgsByAddingArg called"); + return NULL; +} + +void* AMRestoreCreateBootArgsByRemovingArg(void) +{ + if (verbose) puts("STUB: AMRestoreCreateBootArgsByRemovingArg called"); + return NULL; +} + +void* AMRestoreCreateDefaultOptions(void) +{ + if (verbose) puts("STUB: AMRestoreCreateDefaultOptions called"); + return NULL; +} + +void* AMRestoreCreatePathsForBundle(void) +{ + if (verbose) puts("STUB: AMRestoreCreatePathsForBundle called"); + return NULL; +} + +void* AMRestoreDeviceGetFwImages(void) +{ + if (verbose) puts("STUB: AMRestoreDeviceGetFwImages called"); + return NULL; +} + +void* AMRestoreDisableFileLogging(void) +{ + if (verbose) puts("STUB: AMRestoreDisableFileLogging called"); + return NULL; +} + +void* AMRestoreEnableExtraDFUDevices(void) +{ + if (verbose) puts("STUB: AMRestoreEnableExtraDFUDevices called"); + return NULL; +} + +void* AMRestoreEnableFileLogging(void) +{ + if (verbose) puts("STUB: AMRestoreEnableFileLogging called"); + return NULL; +} + +void* AMRestoreGetSupportedPayloadVersion(void) +{ + if (verbose) puts("STUB: AMRestoreGetSupportedPayloadVersion called"); + return NULL; +} + +void* AMRestoreLogFilePaths(void) +{ + if (verbose) puts("STUB: AMRestoreLogFilePaths called"); + return NULL; +} + +void* AMRestoreModeCopyDeviceInfo(void) +{ + if (verbose) puts("STUB: AMRestoreModeCopyDeviceInfo called"); + return NULL; +} + +void* AMRestoreModeDeviceCopyBoardConfig(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCopyBoardConfig called"); + return NULL; +} + +void* AMRestoreModeDeviceCopyEcid(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCopyEcid called"); + return NULL; +} + +void* AMRestoreModeDeviceCopyIMEI(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCopyIMEI called"); + return NULL; +} + +void* AMRestoreModeDeviceCopyMarketingPartNumber(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCopyMarketingPartNumber called"); + return NULL; +} + +void* AMRestoreModeDeviceCopyRestoreLog(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCopyRestoreLog called"); + return NULL; +} + +void* AMRestoreModeDeviceCopySerialNumber(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCopySerialNumber called"); + return NULL; +} + +void* AMRestoreModeDeviceCreate(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceCreate called"); + return NULL; +} + +void* AMRestoreModeDeviceGetDeviceID(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceGetDeviceID called"); + return NULL; +} + +void* AMRestoreModeDeviceGetLocationID(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceGetLocationID called"); + return NULL; +} + +void* AMRestoreModeDeviceGetProgress(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceGetProgress called"); + return NULL; +} + +void* AMRestoreModeDeviceGetTypeID(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceGetTypeID called"); + return NULL; +} + +void* AMRestoreModeDeviceReboot(void) +{ + if (verbose) puts("STUB: AMRestoreModeDeviceReboot called"); + return NULL; +} + +void* AMRestoreModeGetLastFailureLog(void) +{ + if (verbose) puts("STUB: AMRestoreModeGetLastFailureLog called"); + return NULL; +} + +void* AMRestorePerformDFURestore(void) +{ + if (verbose) puts("STUB: AMRestorePerformDFURestore called"); + return NULL; +} + +void* AMRestorePerformRecoveryModeRestore(void) +{ + if (verbose) puts("STUB: AMRestorePerformRecoveryModeRestore called"); + return NULL; +} + +void* AMRestorePerformRestoreModeRestore(void) +{ + if (verbose) puts("STUB: AMRestorePerformRestoreModeRestore called"); + return NULL; +} + +void* AMRestorePerformRestoreModeRestoreWithError(void) +{ + if (verbose) puts("STUB: AMRestorePerformRestoreModeRestoreWithError called"); + return NULL; +} + +void* AMRestoreRegisterForDeviceNotifications(void) +{ + if (verbose) puts("STUB: AMRestoreRegisterForDeviceNotifications called"); + return NULL; +} + +void* AMRestoreScrubLogs(void) +{ + if (verbose) puts("STUB: AMRestoreScrubLogs called"); + return NULL; +} + +void* AMRestoreSetLogLevel(void) +{ + if (verbose) puts("STUB: AMRestoreSetLogLevel called"); + return NULL; +} + +void* AMRestoreUnregisterForDeviceNotifications(void) +{ + if (verbose) puts("STUB: AMRestoreUnregisterForDeviceNotifications called"); + return NULL; +} + +void* AMRestoreUseFactoryLoggingFormat(void) +{ + if (verbose) puts("STUB: AMRestoreUseFactoryLoggingFormat called"); + return NULL; +} + +void* AMSArchiveBackup(void) +{ + if (verbose) puts("STUB: AMSArchiveBackup called"); + return NULL; +} + +void* AMSBackupWithOptions(void) +{ + if (verbose) puts("STUB: AMSBackupWithOptions called"); + return NULL; +} + +void* AMSBeginSync(void) +{ + if (verbose) puts("STUB: AMSBeginSync called"); + return NULL; +} + +void* AMSBeginSyncForDataClasses(void) +{ + if (verbose) puts("STUB: AMSBeginSyncForDataClasses called"); + return NULL; +} + +void* AMSCancelBackupRestore(void) +{ + if (verbose) puts("STUB: AMSCancelBackupRestore called"); + return NULL; +} + +void* AMSCancelCrashReportCopy(void) +{ + if (verbose) puts("STUB: AMSCancelCrashReportCopy called"); + return NULL; +} + +void* AMSCancelSync(void) +{ + if (verbose) puts("STUB: AMSCancelSync called"); + return NULL; +} + +void* AMSChangeBackupPassword(void) +{ + if (verbose) puts("STUB: AMSChangeBackupPassword called"); + return NULL; +} + +void* AMSCleanup(void) +{ + if (verbose) puts("STUB: AMSCleanup called"); + return NULL; +} + +void* AMSClearDataClasses(void) +{ + if (verbose) puts("STUB: AMSClearDataClasses called"); + return NULL; +} + +void* AMSConnectToCrashReportCopyTarget(void) +{ + if (verbose) puts("STUB: AMSConnectToCrashReportCopyTarget called"); + return NULL; +} + +void* AMSCopyApplicationListFromBackup(void) +{ + if (verbose) puts("STUB: AMSCopyApplicationListFromBackup called"); + return NULL; +} + +void* AMSCopyCrashReportPath(void) +{ + if (verbose) puts("STUB: AMSCopyCrashReportPath called"); + return NULL; +} + +void* AMSCopyCrashReportsFromTarget(void) +{ + if (verbose) puts("STUB: AMSCopyCrashReportsFromTarget called"); + return NULL; +} + +void* AMSCopySourcesForRestoreCompatibleWith(void) +{ + if (verbose) puts("STUB: AMSCopySourcesForRestoreCompatibleWith called"); + return NULL; +} + +void* AMSDisconnectFromCrashReportCopyTarget(void) +{ + if (verbose) puts("STUB: AMSDisconnectFromCrashReportCopyTarget called"); + return NULL; +} + +void* AMSEnableCloudBackup(void) +{ + if (verbose) puts("STUB: AMSEnableCloudBackup called"); + return NULL; +} + +void* AMSEnableSyncServices(void) +{ + if (verbose) puts("STUB: AMSEnableSyncServices called"); + return NULL; +} + +void* AMSEraseDevice(void) +{ + if (verbose) puts("STUB: AMSEraseDevice called"); + return NULL; +} + +void* AMSGetBackupInfo(void) +{ + if (verbose) puts("STUB: AMSGetBackupInfo called"); + return NULL; +} + +void* AMSGetBackupPasswordFromKeychainForTarget(void) +{ + if (verbose) puts("STUB: AMSGetBackupPasswordFromKeychainForTarget called"); + return NULL; +} + +void* AMSGetCalendarDayLimit(void) +{ + if (verbose) puts("STUB: AMSGetCalendarDayLimit called"); + return NULL; +} + +void* AMSGetClientIdentifierAndDisplayNameForTarget(void) +{ + if (verbose) puts("STUB: AMSGetClientIdentifierAndDisplayNameForTarget called"); + return NULL; +} + +void* AMSGetCollectionsForDataClassName(void) +{ + if (verbose) puts("STUB: AMSGetCollectionsForDataClassName called"); + return NULL; +} + +void* AMSGetCrashReportCopyPreferencesForTarget(void) +{ + if (verbose) puts("STUB: AMSGetCrashReportCopyPreferencesForTarget called"); + return NULL; +} + +void* AMSGetDataClassInfoForTarget(void) +{ + if (verbose) puts("STUB: AMSGetDataClassInfoForTarget called"); + return NULL; +} + +void* AMSGetLastSyncDateForDataClass(void) +{ + if (verbose) puts("STUB: AMSGetLastSyncDateForDataClass called"); + return NULL; +} + +void* AMSGetNewRecordCalendarName(void) +{ + if (verbose) puts("STUB: AMSGetNewRecordCalendarName called"); + return NULL; +} + +void* AMSGetNewRecordGroupName(void) +{ + if (verbose) puts("STUB: AMSGetNewRecordGroupName called"); + return NULL; +} + +void* AMSGetNumberOfCrashReportsToCopy(void) +{ + if (verbose) puts("STUB: AMSGetNumberOfCrashReportsToCopy called"); + return NULL; +} + +void* AMSGetNumberOfCrashReportsToSubmit(void) +{ + if (verbose) puts("STUB: AMSGetNumberOfCrashReportsToSubmit called"); + return NULL; +} + +void* AMSGetSourcesForRestore(void) +{ + if (verbose) puts("STUB: AMSGetSourcesForRestore called"); + return NULL; +} + +void* AMSGetSupportedDataClassNames(void) +{ + if (verbose) puts("STUB: AMSGetSupportedDataClassNames called"); + return NULL; +} + +void* AMSInitialize(void) +{ + if (verbose) puts("STUB: AMSInitialize called"); + return NULL; +} + +void* AMSIsSyncServicesEnabled(void) +{ + if (verbose) puts("STUB: AMSIsSyncServicesEnabled called"); + return NULL; +} + +void* AMSProcessLinkExitChild(void) +{ + if (verbose) puts("STUB: AMSProcessLinkExitChild called"); + return NULL; +} + +void* AMSProcessLinkInitializeChild(void) +{ + if (verbose) puts("STUB: AMSProcessLinkInitializeChild called"); + return NULL; +} + +void* AMSProcessLinkInvalidate(void) +{ + if (verbose) puts("STUB: AMSProcessLinkInvalidate called"); + return NULL; +} + +void* AMSProcessLinkReadMessageFromChild(void) +{ + if (verbose) puts("STUB: AMSProcessLinkReadMessageFromChild called"); + return NULL; +} + +void* AMSProcessLinkRelease(void) +{ + if (verbose) puts("STUB: AMSProcessLinkRelease called"); + return NULL; +} + +void* AMSProcessLinkRetain(void) +{ + if (verbose) puts("STUB: AMSProcessLinkRetain called"); + return NULL; +} + +void* AMSProcessLinkRunChild(void) +{ + if (verbose) puts("STUB: AMSProcessLinkRunChild called"); + return NULL; +} + +void* AMSProcessLinkSendMessage(void) +{ + if (verbose) puts("STUB: AMSProcessLinkSendMessage called"); + return NULL; +} + +void* AMSProcessLinkSendMessageAsync(void) +{ + if (verbose) puts("STUB: AMSProcessLinkSendMessageAsync called"); + return NULL; +} + +void* AMSProcessLinkSendMessageLock(void) +{ + if (verbose) puts("STUB: AMSProcessLinkSendMessageLock called"); + return NULL; +} + +void* AMSProcessLinkSendMessageToParent(void) +{ + if (verbose) puts("STUB: AMSProcessLinkSendMessageToParent called"); + return NULL; +} + +void* AMSRegisterClientWithTargetIdentifierAndDisplayName(void) +{ + if (verbose) puts("STUB: AMSRegisterClientWithTargetIdentifierAndDisplayName called"); + return NULL; +} + +void* AMSResetSyncData(void) +{ + if (verbose) puts("STUB: AMSResetSyncData called"); + return NULL; +} + +void* AMSRestoreWithApplications(void) +{ + if (verbose) puts("STUB: AMSRestoreWithApplications called"); + return NULL; +} + +void* AMSSetBackupPasswordInKeychain(void) +{ + if (verbose) puts("STUB: AMSSetBackupPasswordInKeychain called"); + return NULL; +} + +void* AMSSetCalendarDayLimit(void) +{ + if (verbose) puts("STUB: AMSSetCalendarDayLimit called"); + return NULL; +} + +void* AMSSetCrashReportCopyPreferencesForTarget(void) +{ + if (verbose) puts("STUB: AMSSetCrashReportCopyPreferencesForTarget called"); + return NULL; +} + +void* AMSSetDataClassInfoForTarget(void) +{ + if (verbose) puts("STUB: AMSSetDataClassInfoForTarget called"); + return NULL; +} + +void* AMSSetFilteredCollectionNamesForDataClassName(void) +{ + if (verbose) puts("STUB: AMSSetFilteredCollectionNamesForDataClassName called"); + return NULL; +} + +void* AMSSetNewRecordCalendarName(void) +{ + if (verbose) puts("STUB: AMSSetNewRecordCalendarName called"); + return NULL; +} + +void* AMSSetNewRecordGroupName(void) +{ + if (verbose) puts("STUB: AMSSetNewRecordGroupName called"); + return NULL; +} + +void* AMSSubmitCrashReportsFromTarget(void) +{ + if (verbose) puts("STUB: AMSSubmitCrashReportsFromTarget called"); + return NULL; +} + +void* AMSSubmitRestoreLogFromPath(void) +{ + if (verbose) puts("STUB: AMSSubmitRestoreLogFromPath called"); + return NULL; +} + +void* AMSUnregisterTarget(void) +{ + if (verbose) puts("STUB: AMSUnregisterTarget called"); + return NULL; +} + +void* AMSupportCreateDataFromFileURL(void) +{ + if (verbose) puts("STUB: AMSupportCreateDataFromFileURL called"); + return NULL; +} + +void* AMSupportCreateDigest(void) +{ + if (verbose) puts("STUB: AMSupportCreateDigest called"); + return NULL; +} + +void* AMSupportCreateErrorInternal(void) +{ + if (verbose) puts("STUB: AMSupportCreateErrorInternal called"); + return NULL; +} + +void* AMSupportCreateURLFromString(void) +{ + if (verbose) puts("STUB: AMSupportCreateURLFromString called"); + return NULL; +} + +void* AMSupportHttpCreateDataFromURL(void) +{ + if (verbose) puts("STUB: AMSupportHttpCreateDataFromURL called"); + return NULL; +} + +void* AMSupportSafeFree(void) +{ + if (verbose) puts("STUB: AMSupportSafeFree called"); + return NULL; +} + +void* AMSupportSafeRelease(void) +{ + if (verbose) puts("STUB: AMSupportSafeRelease called"); + return NULL; +} + +void* AMSupportWriteDataToFileURL(void) +{ + if (verbose) puts("STUB: AMSupportWriteDataToFileURL called"); + return NULL; +} + +void* ASRServerHandleConnection(void) +{ + if (verbose) puts("STUB: ASRServerHandleConnection called"); + return NULL; +} + +void* ASRServerHandleSlurp(void) +{ + if (verbose) puts("STUB: ASRServerHandleSlurp called"); + return NULL; +} + +void* DERDecodeItemPartialBuffer(void) +{ + if (verbose) puts("STUB: DERDecodeItemPartialBuffer called"); + return NULL; +} + +void* DERParseInteger(void) +{ + if (verbose) puts("STUB: DERParseInteger called"); + return NULL; +} + +void* MDRemoteServiceDeviceGetPropertyDictionary(void) +{ + if (verbose) puts("STUB: MDRemoteServiceDeviceGetPropertyDictionary called"); + return NULL; +} + +void* MDRemoteServiceDeviceGetTypeID(void) +{ + if (verbose) puts("STUB: MDRemoteServiceDeviceGetTypeID called"); + return NULL; +} + +void* MISCopyErrorStringForErrorCode(void) +{ + if (verbose) puts("STUB: MISCopyErrorStringForErrorCode called"); + return NULL; +} + +void* MISProfileCopyPayload(void) +{ + if (verbose) puts("STUB: MISProfileCopyPayload called"); + return NULL; +} + +void* MISProfileCopySignerSubjectSummary(void) +{ + if (verbose) puts("STUB: MISProfileCopySignerSubjectSummary called"); + return NULL; +} + +void* MISProfileCreate(void) +{ + if (verbose) puts("STUB: MISProfileCreate called"); + return NULL; +} + +void* MISProfileCreateDataRepresentation(void) +{ + if (verbose) puts("STUB: MISProfileCreateDataRepresentation called"); + return NULL; +} + +void* MISProfileCreateForProvisioning(void) +{ + if (verbose) puts("STUB: MISProfileCreateForProvisioning called"); + return NULL; +} + +void* MISProfileCreateMutableCopy(void) +{ + if (verbose) puts("STUB: MISProfileCreateMutableCopy called"); + return NULL; +} + +void* MISProfileCreateWithData(void) +{ + if (verbose) puts("STUB: MISProfileCreateWithData called"); + return NULL; +} + +void* MISProfileCreateWithFile(void) +{ + if (verbose) puts("STUB: MISProfileCreateWithFile called"); + return NULL; +} + +void* MISProfileGetTypeID(void) +{ + if (verbose) puts("STUB: MISProfileGetTypeID called"); + return NULL; +} + +void* MISProfileGetValue(void) +{ + if (verbose) puts("STUB: MISProfileGetValue called"); + return NULL; +} + +void* MISProfileIsMutable(void) +{ + if (verbose) puts("STUB: MISProfileIsMutable called"); + return NULL; +} + +void* MISProfileRemoveValue(void) +{ + if (verbose) puts("STUB: MISProfileRemoveValue called"); + return NULL; +} + +void* MISProfileSetPayload(void) +{ + if (verbose) puts("STUB: MISProfileSetPayload called"); + return NULL; +} + +void* MISProfileSetValue(void) +{ + if (verbose) puts("STUB: MISProfileSetValue called"); + return NULL; +} + +void* MISProfileSignWithKeyAndCertificates(void) +{ + if (verbose) puts("STUB: MISProfileSignWithKeyAndCertificates called"); + return NULL; +} + +void* MISProfileSignWithRSACallBack(void) +{ + if (verbose) puts("STUB: MISProfileSignWithRSACallBack called"); + return NULL; +} + +void* MISProfileValidateSignature(void) +{ + if (verbose) puts("STUB: MISProfileValidateSignature called"); + return NULL; +} + +void* MISProfileValidateSignatureWithAnchors(void) +{ + if (verbose) puts("STUB: MISProfileValidateSignatureWithAnchors called"); + return NULL; +} + +void* MISProfileValidateSignatureWithAnchorsAndPolicy(void) +{ + if (verbose) puts("STUB: MISProfileValidateSignatureWithAnchorsAndPolicy called"); + return NULL; +} + +void* MISProfileWriteToFile(void) +{ + if (verbose) puts("STUB: MISProfileWriteToFile called"); + return NULL; +} + +void* MISProvisioningProfileAddDeveloperCertificate(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileAddDeveloperCertificate called"); + return NULL; +} + +void* MISProvisioningProfileAddEntitlement(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileAddEntitlement called"); + return NULL; +} + +void* MISProvisioningProfileAddProvisionedDevice(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileAddProvisionedDevice called"); + return NULL; +} + +void* MISProvisioningProfileCheckValidity(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileCheckValidity called"); + return NULL; +} + +void* MISProvisioningProfileCopyApplicationIdentifierPrefixes(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileCopyApplicationIdentifierPrefixes called"); + return NULL; +} + +void* MISProvisioningProfileCreateMutableCopy(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileCreateMutableCopy called"); + return NULL; +} + +void* MISProvisioningProfileGetCreationDate(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetCreationDate called"); + return NULL; +} + +void* MISProvisioningProfileGetDeveloperCertificates(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetDeveloperCertificates called"); + return NULL; +} + +void* MISProvisioningProfileGetEntitlements(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetEntitlements called"); + return NULL; +} + +void* MISProvisioningProfileGetExpirationDate(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetExpirationDate called"); + return NULL; +} + +void* MISProvisioningProfileGetName(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetName called"); + return NULL; +} + +void* MISProvisioningProfileGetProvisionedDevices(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetProvisionedDevices called"); + return NULL; +} + +void* MISProvisioningProfileGetTeamIdentifier(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetTeamIdentifier called"); + return NULL; +} + +void* MISProvisioningProfileGetUUID(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetUUID called"); + return NULL; +} + +void* MISProvisioningProfileGetVersion(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGetVersion called"); + return NULL; +} + +void* MISProvisioningProfileGrantsEntitlement(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileGrantsEntitlement called"); + return NULL; +} + +void* MISProvisioningProfileIncludesDevice(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileIncludesDevice called"); + return NULL; +} + +void* MISProvisioningProfileIncludesPlatform(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileIncludesPlatform called"); + return NULL; +} + +void* MISProvisioningProfileIsAppleInternalProfile(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileIsAppleInternalProfile called"); + return NULL; +} + +void* MISProvisioningProfileIsForLocalProvisioning(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileIsForLocalProvisioning called"); + return NULL; +} + +void* MISProvisioningProfileProvisionsAllDevices(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileProvisionsAllDevices called"); + return NULL; +} + +void* MISProvisioningProfileSetApplicationIdentifierPrefixes(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileSetApplicationIdentifierPrefixes called"); + return NULL; +} + +void* MISProvisioningProfileSetDeveloperCertificates(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileSetDeveloperCertificates called"); + return NULL; +} + +void* MISProvisioningProfileSetName(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileSetName called"); + return NULL; +} + +void* MISProvisioningProfileSetProvisionsAllDevices(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileSetProvisionsAllDevices called"); + return NULL; +} + +void* MISProvisioningProfileSetTimeToLive(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileSetTimeToLive called"); + return NULL; +} + +void* MISProvisioningProfileValidateSignature(void) +{ + if (verbose) puts("STUB: MISProvisioningProfileValidateSignature called"); + return NULL; +} + +void* ProcessLinkSetupParent(void) +{ + if (verbose) puts("STUB: ProcessLinkSetupParent called"); + return NULL; +} + +void* RCGetSystemPartitionExtrasSizeForDevice(void) +{ + if (verbose) puts("STUB: RCGetSystemPartitionExtrasSizeForDevice called"); + return NULL; +} + +void* RPCreateSocksProxyForDeviceRef(void) +{ + if (verbose) puts("STUB: RPCreateSocksProxyForDeviceRef called"); + return NULL; +} + +void* RPSocksProxyInvalidate(void) +{ + if (verbose) puts("STUB: RPSocksProxyInvalidate called"); + return NULL; +} + +void* RPSocksProxySetDoneCallback(void) +{ + if (verbose) puts("STUB: RPSocksProxySetDoneCallback called"); + return NULL; +} + +void* RPSocksProxyStart(void) +{ + if (verbose) puts("STUB: RPSocksProxyStart called"); + return NULL; +} + +void* RestoreCheckpointCreateCheckpointFingerprint(void) +{ + if (verbose) puts("STUB: RestoreCheckpointCreateCheckpointFingerprint called"); + return NULL; +} + +void* RestoreCheckpointDataCreate(void) +{ + if (verbose) puts("STUB: RestoreCheckpointDataCreate called"); + return NULL; +} + +void* RestoreCheckpointGetCheckpointStatements(void) +{ + if (verbose) puts("STUB: RestoreCheckpointGetCheckpointStatements called"); + return NULL; +} + +void* RestoreCheckpointGetCheckpointWarnings(void) +{ + if (verbose) puts("STUB: RestoreCheckpointGetCheckpointWarnings called"); + return NULL; +} + +void* RestoreCheckpointGetLastCheckpointError(void) +{ + if (verbose) puts("STUB: RestoreCheckpointGetLastCheckpointError called"); + return NULL; +} + +void* RestoreCheckpointGetLastCheckpointID(void) +{ + if (verbose) puts("STUB: RestoreCheckpointGetLastCheckpointID called"); + return NULL; +} + +void* RestoreCheckpointGetLastCheckpointResult(void) +{ + if (verbose) puts("STUB: RestoreCheckpointGetLastCheckpointResult called"); + return NULL; +} + +void* SZArchiverConvertZipArchiveToStreamable(void) +{ + if (verbose) puts("STUB: SZArchiverConvertZipArchiveToStreamable called"); + return NULL; +} + +void* SZArchiverCreateStreamableZip(void) +{ + if (verbose) puts("STUB: SZArchiverCreateStreamableZip called"); + return NULL; +} + +void* SZArchiverExtractFile(void) +{ + if (verbose) puts("STUB: SZArchiverExtractFile called"); + return NULL; +} + +void* SZConduitSendPath(void) +{ + if (verbose) puts("STUB: SZConduitSendPath called"); + return NULL; +} + +void* SZConduitSendPathWithPreflight(void) +{ + if (verbose) puts("STUB: SZConduitSendPathWithPreflight called"); + return NULL; +} + +void* USBMuxConnectByPort(void) +{ + if (verbose) puts("STUB: USBMuxConnectByPort called"); + return NULL; +} + +void* USBMuxCopyDeviceArray(void) +{ + if (verbose) puts("STUB: USBMuxCopyDeviceArray called"); + return NULL; +} + +void* USBMuxListenForDevices(void) +{ + if (verbose) puts("STUB: USBMuxListenForDevices called"); + return NULL; +} + +void* USBMuxListenerClose(void) +{ + if (verbose) puts("STUB: USBMuxListenerClose called"); + return NULL; +} + +void* USBMuxListenerCreate(void) +{ + if (verbose) puts("STUB: USBMuxListenerCreate called"); + return NULL; +} + +void* USBMuxListenerCreateFiltered(void) +{ + if (verbose) puts("STUB: USBMuxListenerCreateFiltered called"); + return NULL; +} + +void* USBMuxListenerGetRunLoopSource(void) +{ + if (verbose) puts("STUB: USBMuxListenerGetRunLoopSource called"); + return NULL; +} + +void* USBMuxListenerSetDebug(void) +{ + if (verbose) puts("STUB: USBMuxListenerSetDebug called"); + return NULL; +} + +void* _AMRestorableDeviceCopyBoardConfigNoLocking(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceCopyBoardConfigNoLocking called"); + return NULL; +} + +void* _AMRestorableDeviceGetECIDNoLocking(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceGetECIDNoLocking called"); + return NULL; +} + +void* _AMRestorableDeviceGetLocationIDNoLocking(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceGetLocationIDNoLocking called"); + return NULL; +} + +void* _AMRestorableDeviceGetProxy(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceGetProxy called"); + return NULL; +} + +void* _AMRestorableDeviceSendBlindCommandNoLocking(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceSendBlindCommandNoLocking called"); + return NULL; +} + +void* _AMRestorableDeviceSendCommandNoLocking(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceSendCommandNoLocking called"); + return NULL; +} + +void* _AMRestorableDeviceSendFileNoLocking(void) +{ + if (verbose) puts("STUB: _AMRestorableDeviceSendFileNoLocking called"); + return NULL; +} + +void* _AMRestorableGetEventQueue(void) +{ + if (verbose) puts("STUB: _AMRestorableGetEventQueue called"); + return NULL; +} + +void* _AMRestorableGetStateForString(void) +{ + if (verbose) puts("STUB: _AMRestorableGetStateForString called"); + return NULL; +} + +void* _AMRestorableGetStringForState(void) +{ + if (verbose) puts("STUB: _AMRestorableGetStringForState called"); + return NULL; +} + +void* _AMSGetErrorReasonForErrorCode(void) +{ + if (verbose) puts("STUB: _AMSGetErrorReasonForErrorCode called"); + return NULL; +} + +void* _CreateBonjourDeviceDescriptions(void) +{ + if (verbose) puts("STUB: _CreateBonjourDeviceDescriptions called"); + return NULL; +} + +void* _FinalizeMobileDevice(void) +{ + if (verbose) puts("STUB: _FinalizeMobileDevice called"); + return NULL; +} + +void* _InitializeMobileDevice(void) +{ + if (verbose) puts("STUB: _InitializeMobileDevice called"); + return NULL; +} + +void* _ensureDirectoryExists(void) +{ + if (verbose) puts("STUB: _ensureDirectoryExists called"); + return NULL; +} + +void* _logData(void) +{ + if (verbose) puts("STUB: _logData called"); + return NULL; +} + +void* _readDictionary(void) +{ + if (verbose) puts("STUB: _readDictionary called"); + return NULL; +} + +void* _runBackupTool(void) +{ + if (verbose) puts("STUB: _runBackupTool called"); + return NULL; +} + +void* _sendMessage(void) +{ + if (verbose) puts("STUB: _sendMessage called"); + return NULL; +} + +void* _writeDictionary(void) +{ + if (verbose) puts("STUB: _writeDictionary called"); + return NULL; +} diff --git a/src/private-frameworks/MobileDevice/src/PersonalizedImage.m b/src/private-frameworks/MobileDevice/src/PersonalizedImage.m new file mode 100644 index 000000000..bbd5a94c4 --- /dev/null +++ b/src/private-frameworks/MobileDevice/src/PersonalizedImage.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 PersonalizedImage + +- (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/private-frameworks/MobileDevice/src/RPStream.m b/src/private-frameworks/MobileDevice/src/RPStream.m new file mode 100644 index 000000000..d14569a8d --- /dev/null +++ b/src/private-frameworks/MobileDevice/src/RPStream.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 RPStream + +- (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/private-frameworks/include/MobileDevice b/src/private-frameworks/include/MobileDevice new file mode 120000 index 000000000..e0ff1f752 --- /dev/null +++ b/src/private-frameworks/include/MobileDevice @@ -0,0 +1 @@ +../MobileDevice/include/MobileDevice \ No newline at end of file