mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
e2b507313b
This will remove a lot of the stray files in the temporary dir. However, they won't be deleted on exit of the program. What to do about this?
19 lines
303 B
Objective-C
19 lines
303 B
Objective-C
//
|
|
// PBEasyFS.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 6/17/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBEasyFS : NSObject {
|
|
|
|
}
|
|
+ (NSString*) tmpNameWithSuffix: (NSString*) path;
|
|
+ (NSString*) tmpDirWithPrefix: (NSString*) path;
|
|
|
|
@end
|