Files
IJSVG/source/IJSVGStyleSheet.h
T
Curtis Hard 0845338e33 Added basic CSS support
Matches basic CSS such as ".test#test2 div.bacon {}" and so on.
2016-01-16 16:35:20 +00:00

26 lines
491 B
Objective-C

//
// IJSVGStyleSheet.h
// IJSVGExample
//
// Created by Curtis Hard on 16/01/2016.
// Copyright © 2016 Curtis Hard. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "IJSVGStyleSheetSelector.h"
#import "IJSVGStyleSheetRule.h"
@class IJSVGNode;
@interface IJSVGStyleSheet : NSObject {
@private
NSMutableDictionary * _selectors;
NSMutableArray * _rules;
}
- (void)parseStyleBlock:(NSString *)string;
- (IJSVGStyle *)styleForNode:(IJSVGNode *)node;
@end