mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@19142 72102866-910b-0410-8b05-ffd578937521
19 lines
297 B
Objective-C
19 lines
297 B
Objective-C
#ifndef INCLUDED_GormColorsPref_h
|
|
#define INCLUDED_GormColorsPref_h
|
|
|
|
#include <Foundation/NSObject.h>
|
|
#include <Foundation/NSArray.h>
|
|
|
|
#include <AppKit/NSView.h>
|
|
|
|
@interface GormColorsPref : NSObject
|
|
{
|
|
id color;
|
|
id window;
|
|
id _view;
|
|
}
|
|
- (NSView *) view;
|
|
- (void)ok: (id)sender;
|
|
@end
|
|
|
|
#endif
|