Initial commit for Project with ignore file

This commit is contained in:
michael starke
2012-07-19 16:04:46 +02:00
parent 55b2910183
commit 60a8267396
16 changed files with 1762 additions and 2595 deletions

View File

@@ -0,0 +1,23 @@
//
// MPOutlineDataSource.m
// MacPass
//
// Created by Michael Starke on 19.07.12.
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
//
#import "MPOutlineDataSource.h"
@implementation MPOutlineDataSource
- (NSInteger)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item {
return 10;
}
- (id)outlineView:(NSOutlineView *)outlineView child:(NSInteger)index ofItem:(id)item {
return nil;
}
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item {
return YES;
}
@end