/* NSTextList.h Copyright (c) 2004-2012, Apple Inc. All rights reserved. Class to represent text lists. */ #import enum { NSTextListPrependEnclosingMarker = (1 << 0) }; @interface NSTextList : NSObject { /*All instance variables are private*/ NSString *_markerFormat; NSUInteger _listFlags; NSInteger _startIndex; void *_listSecondary; } - (id)initWithMarkerFormat:(NSString *)format options:(NSUInteger)mask; - (NSString *)markerFormat; - (NSUInteger)listOptions; - (NSString *)markerForItemNumber:(NSInteger)itemNum; - (void)setStartingItemNumber:(NSInteger)itemNum NS_AVAILABLE_MAC(10_6); - (NSInteger)startingItemNumber NS_AVAILABLE_MAC(10_6); @end