/Tools/NativeHost/Console.h

http://github.com/cacaodev/cappuccino · C Header · 21 lines · 8 code · 6 blank · 7 comment · 0 complexity · 36b6d4f49310d7383b4c71befc9b8986 MD5 · raw file

  1. //
  2. // Console.h
  3. // NativeHost
  4. //
  5. // Created by Francisco Tolmasky on 6/16/09.
  6. // Copyright 2009 280 North, Inc.. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface Console : NSObject
  10. {
  11. NSMutableAttributedString * contents;
  12. }
  13. + (id)sharedConsole;
  14. - (NSAttributedString *)contents;
  15. @end