From b1e4c55281bc67c669c6337aab2ed1b65db230eb Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Wed, 4 Oct 2023 16:45:06 -0400 Subject: [PATCH] remove missing file --- MVMCore/MVMCore/Singletons/MVMCoreObject.h | 44 ---------------------- 1 file changed, 44 deletions(-) delete mode 100644 MVMCore/MVMCore/Singletons/MVMCoreObject.h diff --git a/MVMCore/MVMCore/Singletons/MVMCoreObject.h b/MVMCore/MVMCore/Singletons/MVMCoreObject.h deleted file mode 100644 index dd7f22f..0000000 --- a/MVMCore/MVMCore/Singletons/MVMCoreObject.h +++ /dev/null @@ -1,44 +0,0 @@ -// -// MVMCoreObject.h -// MVMCore -// -// Created by Pfeil, Scott Robert on 11/21/17. -// Copyright © 2017 myverizon. All rights reserved. -// - -#import -#import -#import -#import -#import -#import -#import -#import -#import -@class MVMCoreActionHandler; -@class MVMCoreSessionTimeHandler; - -@interface MVMCoreObject : NSObject - -@property (nullable, strong, nonatomic) MVMCoreSessionObject *session; -@property (nullable, strong, nonatomic) MVMCoreCache *cache; -@property (nullable, strong, nonatomic) MVMCoreViewControllerMappingObject *viewControllerMapping; -@property (nullable, strong, nonatomic) MVMCoreActionHandler *actionHandler; -@property (nullable, strong, nonatomic) MVMCoreSessionTimeHandler *sessionHandler; -@property (nullable, strong, nonatomic) MVMCoreLoadHandler *loadHandler; - -// The delegates -@property (nullable, strong, nonatomic) id globalLoadDelegate; -@property (nullable, strong, nonatomic) id loadingProtocol; -@property (nullable, strong, nonatomic) NSObject *loggingDelegate; - -// A reference to the calling application delegate that should be set. For a normal app, could be the UIApplicationDelegate. For watch, could be WKExtensionDelegate. For iMessage, could be MSMessagesAppViewController. etc, etc. Useful for the framework to call delegate specific functions. -@property (nullable, weak, nonatomic) id applicationDelegate; - -// A singleton. -+ (nullable instancetype)sharedInstance; - -// Sets up with a default session, cache, view controller mapping, action handler, session handler, and logging delegate. -- (void)defaultInitialSetup; - -@end