RxSwift/RxCocoa/iOS/Proxies/RxCollectionViewDelegatePro...

24 lines
494 B
Swift

//
// RxCollectionViewDelegateProxy.swift
// RxCocoa
//
// Created by Krunoslav Zaher on 6/29/15.
// Copyright (c) 2015 Krunoslav Zaher. All rights reserved.
//
#if os(iOS) || os(tvOS)
import Foundation
import UIKit
#if !RX_NO_MODULE
import RxSwift
#endif
// Please take a look at `DelegateProxyType.swift`
class RxCollectionViewDelegateProxy : RxScrollViewDelegateProxy
, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {
}
#endif