mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
13 lines
206 B
C
13 lines
206 B
C
|
/* All Rights reserved */
|
||
|
|
||
|
#include <AppKit/AppKit.h>
|
||
|
#include "WinController.h"
|
||
|
|
||
|
@interface MyController : NSObject
|
||
|
{
|
||
|
id value;
|
||
|
WinController *winController;
|
||
|
}
|
||
|
- (void) buttonPressed: (id)sender;
|
||
|
@end
|