mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-28 17:59:31 +01:00
18 lines
375 B
Objective-C
Executable File
18 lines
375 B
Objective-C
Executable File
//
|
|
// RSTransparentContainerView.h
|
|
// RSCore
|
|
//
|
|
// Created by Brent Simmons on 9/19/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Cocoa;
|
|
|
|
/*This view has one subview, which it resizes to fit the bounds of this view.*/
|
|
|
|
@interface RSTransparentContainerView : NSView
|
|
|
|
@property (nonatomic) NSView *containedView; /*Removes old.*/
|
|
|
|
@end
|