mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 22:29:51 +00:00
eede1abbca
git-svn-id: svn://qnap.local/TwoTerm/branches/frameless@2341 5590a31f-7b70-45f8-8c82-aa3a8e5f4507
19 lines
278 B
Objective-C
19 lines
278 B
Objective-C
//
|
|
// ColorView.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 12/20/2011.
|
|
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface ColorView : NSView
|
|
{
|
|
NSColor *_color;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSColor *color;
|
|
|
|
@end
|