23 lines
437 B
Objective-C
23 lines
437 B
Objective-C
//
|
|
// CSSCompoundSelector.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 18/10/15.
|
|
// Copyright © 2015 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import "CSSSelector.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CSSCompoundSelector : CSSSelector
|
|
|
|
+ (instancetype)andSelector:(NSArray<CSSSelector *> *)selectors;
|
|
+ (instancetype)orSelector:(NSArray<CSSSelector *> *)selectors;
|
|
|
|
- (void)addSelector:(CSSSelector *)selector;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|