Skip to content

Commit 044d9fb

Browse files
authored
Merge pull request kyleneideck#781 from johzzy/master
feat: BGMAppDelegate.h forward declaring @Class BGMAudioDeviceManager and @Class BGMAppVolumesController
2 parents e498d87 + 5f6563a commit 044d9fb

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

BGMApp/BGMApp/BGMAppDelegate.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@
2323
// Sets up and tears down the app.
2424
//
2525

26-
// Local Includes
27-
#import "BGMAudioDeviceManager.h"
28-
#import "BGMAppVolumesController.h"
29-
3026
// System Includes
3127
#import <Cocoa/Cocoa.h>
3228

29+
@class BGMAudioDeviceManager;
30+
@class BGMAppVolumesController;
3331

3432
// Tags for UI elements in MainMenu.xib
3533
static NSInteger const kVolumesHeadingMenuItemTag = 3;

BGMApp/BGMApp/Scripting/BGMAppDelegate+AppleScript.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323

2424
#import "BGMAppDelegate.h"
2525

26+
// Local Includes
27+
#import "BGMAudioDeviceManager.h"
28+
#import "BGMAppVolumesController.h"
29+
2630
// Local Includes
2731
#import "BGMASOutputDevice.h"
2832
#import "BGMASApplication.h"

0 commit comments

Comments
 (0)