mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-30 12:23:58 -04:00
30 lines
641 B
Objective-C
30 lines
641 B
Objective-C
//
|
|
// FLEXRuntime+Compare.h
|
|
// FLEX
|
|
//
|
|
// Created by Tanner Bennett on 8/28/19.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "FLEXProperty.h"
|
|
#import "FLEXIvar.h"
|
|
#import "FLEXMethodBase.h"
|
|
#import "FLEXProtocol.h"
|
|
|
|
@interface FLEXProperty (Compare)
|
|
- (NSComparisonResult)compare:(FLEXProperty *)other;
|
|
@end
|
|
|
|
@interface FLEXIvar (Compare)
|
|
- (NSComparisonResult)compare:(FLEXIvar *)other;
|
|
@end
|
|
|
|
@interface FLEXMethodBase (Compare)
|
|
- (NSComparisonResult)compare:(FLEXMethodBase *)other;
|
|
@end
|
|
|
|
@interface FLEXProtocol (Compare)
|
|
- (NSComparisonResult)compare:(FLEXProtocol *)other;
|
|
@end
|