summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/WeakBox.swift
blob: d8a2a86e8b11f09081ada787f6af9c8b80099748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  WeakBox.swift
//  MullvadVPN
//
//  Created by pronebird on 29/05/2019.
//  Copyright © 2019 Amagicom AB. All rights reserved.
//

import Foundation

final class WeakBox<T: AnyObject> {
    weak var unboxed: T?

    init(_ value: T) {
        unboxed = value
    }
}