mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 12:01:16 +00:00
20 lines
297 B
C
20 lines
297 B
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
|