This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/ext/mac-ui-macgap1-wrapper/MacGap/Classes/Commands/Path.h

22 lines
495 B
C
Raw Normal View History

#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