mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-27 08:32:30 +03:00
21 lines
355 B
Objective-C
21 lines
355 B
Objective-C
//
|
|
// AtomWindowController.h
|
|
// Atomicity
|
|
//
|
|
// Created by Chris Wanstrath on 8/22/11.
|
|
// Copyright 2011 GitHub. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface AtomWindowController : NSWindowController {
|
|
IBOutlet id webView;
|
|
NSString *URL;
|
|
}
|
|
|
|
@property (assign) IBOutlet id webView;
|
|
@property (assign) IBOutlet NSString *URL;
|
|
|
|
@end
|