mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
c3f5d517b3
This reduces memory cost somewhat (10MB on the git.git repository), while still keeping the same functionality :) Better would be to use structs in a c array in the cellinfo, as the NSArray and NSObject type information together now use more memory.
24 lines
533 B
Objective-C
24 lines
533 B
Objective-C
//
|
|
// PBLine.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 27-08-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBGitGraphLine : NSObject
|
|
{
|
|
char upper;
|
|
char from;
|
|
char to;
|
|
char colorIndex;
|
|
}
|
|
@property(readonly) char upper, from, to, colorIndex;
|
|
- (id)initWithUpper: (char) u From: (char) f to: (char) t color: (char) c;
|
|
+ (PBGitGraphLine*) lowerLineFrom:(char) f to: (char) t color: (char) c;
|
|
+ (PBGitGraphLine*) upperLineFrom:(char) f to: (char) t color: (char) c;
|
|
|
|
@end |