Skip to content

Commit

Permalink
add missing header for cocoapods
Browse files Browse the repository at this point in the history
  • Loading branch information
amine2233 committed Feb 11, 2022
1 parent 7c292d8 commit 44b6a70
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/RetroObjective/RetroObjectiveProxy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

protocol InitializerProtocol: class {
protocol InitializerProtocol: AnyObject {
static var classSelectors: [NSValue: Set<Selector>] { get set }

func lock()
Expand Down
2 changes: 1 addition & 1 deletion Sources/RetroObjective/RetroObjectiveProxyType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Foundation

private var associatedKey: UInt8 = 0

public protocol RetroObjectiveProxyType: class {
public protocol RetroObjectiveProxyType: AnyObject {
associatedtype Owner

func resetRetroObjectiveProxyType(owner: Owner)
Expand Down
12 changes: 12 additions & 0 deletions Sources/RetroObjectiveObjC/RetroObjective.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// Header.h
//
//
// Created by Amine Bensalah on 11/02/2022.
//

#ifndef Header_h
#define Header_h


#endif /* Header_h */

0 comments on commit 44b6a70

Please sign in to comment.