mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
24 lines
459 B
Objective-C
24 lines
459 B
Objective-C
//
|
|
// DTHTMLElementStylesheet.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 29.12.12.
|
|
// Copyright (c) 2012 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTHTMLElement.h"
|
|
|
|
@class DTCSSStylesheet;
|
|
|
|
/**
|
|
This is a specialized subclass of <DTHTMLElement> representing a style block.
|
|
*/
|
|
@interface DTStylesheetHTMLElement : DTHTMLElement
|
|
|
|
/**
|
|
Parses the text children and assembles the resulting stylesheet.
|
|
*/
|
|
- (DTCSSStylesheet *)stylesheet;
|
|
|
|
@end
|