mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
3d64d83f98
This adds a new target 'SpeedTest', which just loads in a repository and displays how long it takes to load the revision. This is handy for testing the speed of the revwalking mechanism
17 lines
201 B
Objective-C
17 lines
201 B
Objective-C
//
|
|
// speedtest.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 20-11-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface speedtest : NSObject {
|
|
|
|
}
|
|
|
|
@end
|