Added missing files.

CQTexperiment
vspader 2007-05-19 15:36:47 +00:00
parent 909789926e
commit 9253776810
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,16 @@
//
// AppcastArrayController.h
// General
//
// Created by Vincent Spader on 5/19/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface AppcastArrayController : NSArrayController {
}
@end

View File

@ -0,0 +1,32 @@
//
// AppcastArrayController.m
// General
//
// Created by Vincent Spader on 5/19/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import "AppcastArrayController.h"
@implementation AppcastArrayController
- (void)awakeFromNib
{
[self removeObjects:[self arrangedObjects]];
[self addObject:
[NSDictionary dictionaryWithObjectsAndKeys:
@"Stable", @"name", @"http://cogx.org/appcast/stable.xml", @"url",nil]];
[self addObject:
[NSDictionary dictionaryWithObjectsAndKeys:
@"Unstable", @"name", @"http://cogx.org/appcast/unstable.xml", @"url",nil]];
[self addObject:
[NSDictionary dictionaryWithObjectsAndKeys:
@"Nightly", @"name", @"http://cogx.org/appcast/nightly.xml", @"url",nil]];
}
@end