mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
22 lines
307 B
Objective-C
22 lines
307 B
Objective-C
//
|
|
// Console.h
|
|
// NativeHost
|
|
//
|
|
// Created by Francisco Tolmasky on 6/16/09.
|
|
// Copyright 2009 280 North, Inc.. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface Console : NSObject
|
|
{
|
|
NSMutableAttributedString * contents;
|
|
}
|
|
|
|
+ (id)sharedConsole;
|
|
|
|
- (NSAttributedString *)contents;
|
|
|
|
@end
|