electron/atom/browser/ui/cocoa/NSString+ANSI.h
Sebastien Bramille a4905b3c95 Lint
2017-11-28 15:34:13 +09:00

21 lines
439 B
Objective-C

//
// NSString+ANSI.h
// BitBar
//
// Created by Kent Karlsson on 3/11/16.
// Copyright © 2016 Bit Bar. All rights reserved.
//
#ifndef ATOM_BROWSER_UI_COCOA_NSSTRING_ANSI_H_
#define ATOM_BROWSER_UI_COCOA_NSSTRING_ANSI_H_
#import <Foundation/Foundation.h>
@interface NSString(ANSI)
- (BOOL)containsANSICodes;
- (NSMutableAttributedString*)attributedStringParsingANSICodes;
@end
#endif // ATOM_BROWSER_UI_COCOA_NSSTRING_ANSI_H_