add more files

This commit is contained in:
Pieter de Bie
2008-09-19 23:33:26 +02:00
parent c508c66e5a
commit 65b61d4502
3 changed files with 1529 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
//
// PBGitCommitController.h
// GitX
//
// Created by Pieter de Bie on 19-09-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBGitRepository.h"
#import "PBGitWindowController.h"
@interface PBGitCommitController : NSViewController {
PBGitRepository* repository;
PBGitWindowController *superController;
}
@property (retain) PBGitRepository *repository;
- (id)initWithRepository:(PBGitRepository *)theRepository superController:(PBGitWindowController *)controller;
@end
+26
View File
@@ -0,0 +1,26 @@
//
// PBGitCommitController.m
// GitX
//
// Created by Pieter de Bie on 19-09-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBGitCommitController.h"
@implementation PBGitCommitController
@synthesize repository;
- (id)initWithRepository:(PBGitRepository *)theRepository superController:(PBGitWindowController *)controller
{
if(self = [self initWithNibName:@"PBGitCommitView" bundle:nil]) {
self.repository = theRepository;
superController = controller;
}
return self;
}
@end
+1480
View File
File diff suppressed because it is too large Load Diff