mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-30 16:13:55 +00:00
22 lines
495 B
Objective-C
22 lines
495 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface Path : NSObject {
|
|
|
|
}
|
|
|
|
- (NSString *) application;
|
|
- (NSString *) resource;
|
|
- (NSString *) documents;
|
|
- (NSString *) library;
|
|
- (NSString *) home;
|
|
- (NSString *) temp;
|
|
|
|
@property (readonly,copy) NSString* application;
|
|
@property (readonly,copy) NSString* resource;
|
|
@property (readonly,copy) NSString* documents;
|
|
@property (readonly,copy) NSString* library;
|
|
@property (readonly,copy) NSString* home;
|
|
@property (readonly,copy) NSString* temp;
|
|
|
|
@end
|