Files
gitx/PBEasyFS.h
Pieter de Bie e2b507313b Delete temporary files when they are deallocated
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?
2008-06-17 05:56:00 +02:00

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