test/index: add more tests
[GitX.git] / PBGitXProtocol.h
blobc4790c3ecf3b34aa5f36a4f0684d6451a430ce06
1 //
2 // PBGitXProtocol.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 01-11-08.
6 // Copyright 2008 Pieter de Bie. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "PBGitRepository.h"
12 @interface PBGitXProtocol : NSURLProtocol {
13 NSFileHandle *handle;
15 @end
17 @interface NSURLRequest (PBGitXProtocol)
18 @property (readonly) PBGitRepository *repository;
19 @end
21 @interface NSMutableURLRequest (PBGitXProtocol)
22 @property (retain) PBGitRepository *repository;
23 @end