31 lines
459 B
Objective-C
31 lines
459 B
Objective-C
//
|
|
// NowPlayingBarController.m
|
|
// Cog
|
|
//
|
|
// Created by Dmitry Promsky on 2/25/12.
|
|
// Copyright 2012 dmitry.promsky@gmail.com. All rights reserved.
|
|
//
|
|
|
|
#import "NowPlayingBarController.h"
|
|
|
|
@implementation NowPlayingBarController
|
|
|
|
- (id)init
|
|
{
|
|
self = [super initWithNibName:@"NowPlayingBarController" bundle:nil];
|
|
if (self)
|
|
{
|
|
// Initialization code here.
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (NSTextField*)text
|
|
{
|
|
return text;
|
|
}
|
|
|
|
@end
|
|
|