2009-02-09 05:53:38 +00:00
|
|
|
//
|
|
|
|
// VolumeButton.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/8/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2021-01-07 21:22:01 +00:00
|
|
|
#import "VolumeSlider.h"
|
2022-02-07 05:49:27 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-02-09 05:53:38 +00:00
|
|
|
|
2021-01-07 21:22:01 +00:00
|
|
|
@interface VolumeButton : NSButton {
|
2022-02-07 05:49:27 +00:00
|
|
|
IBOutlet VolumeSlider *_popView;
|
2009-02-09 05:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|