16 lines
360 B
Objective-C
16 lines
360 B
Objective-C
//
|
|
// MoleculeDelegateProtocol.h
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Scott Pfeil on 5/22/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol MoleculeDelegateProtocol <NSObject>
|
|
|
|
/// returns a module for the corresponding module name.
|
|
- (nullable NSDictionary *)getModuleWithName:(nullable NSString *)name;
|
|
|
|
@end
|