cog/Frameworks/Sparkle/SUWindowController.h

21 lines
553 B
C
Raw Normal View History

2013-10-22 02:17:51 +00:00
//
// SUWindowController.h
// Sparkle
//
// Created by Andy Matuschak on 2/13/08.
// Copyright 2008 Andy Matuschak. All rights reserved.
//
#ifndef SUWINDOWCONTROLLER_H
#define SUWINDOWCONTROLLER_H
#import <Cocoa/Cocoa.h>
@class SUHost;
@interface SUWindowController : NSWindowController { }
// We use this instead of plain old NSWindowController initWithWindowNibName so that we'll be able to find the right path when running in a bundle loaded from another app.
- (id)initWithHost:(SUHost *)host windowNibName:(NSString *)nibName;
@end
#endif