-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathCRCconstants.h
36 lines (31 loc) · 1.3 KB
/
CRCconstants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// CRCconstants.h
//
//
// Created by Diego Massanti on 3/9/16.
//
//
#import <Foundation/Foundation.h>
#define APPLICATION_NAME @"CocoaRestClient"
#define DATAFILE_NAME @"CocoaRestClient.savedRequests"
#define BACKUP_DATAFILE_1_3_8 @"CocoaRestClient.savedRequests.backup-1.3.8"
FOUNDATION_EXPORT NSString * const FOLLOW_REDIRECTS;
FOUNDATION_EXPORT NSString * const APPLY_HTTP_METHOD_ON_REDIRECT;
FOUNDATION_EXPORT NSString * const SYNTAX_HIGHLIGHT;
FOUNDATION_EXPORT NSString * const RAW_REQUEST_BODY;
FOUNDATION_EXPORT NSString * const RESPONSE_TIMEOUT;
FOUNDATION_EXPORT NSString * const SAVED_DRAWER_SIZE;
FOUNDATION_EXPORT NSString * const THEME;
FOUNDATION_EXPORT NSString * const DARK_THEME;
FOUNDATION_EXPORT NSUInteger const DEFAULT_FONT_SIZE;
FOUNDATION_EXPORT NSString * const SHOW_LINE_NUMBERS;
FOUNDATION_EXPORT NSString * const DISABLE_ANIMATIONS;
FOUNDATION_EXPORT NSString * const DISABLE_COOKIES;
FOUNDATION_EXPORT NSString * const FILE_REQUEST_BODY;
FOUNDATION_EXPORT NSString * const ALLOW_SELF_SIGNED_CERTS;
FOUNDATION_EXPORT NSString * const SHOW_SAVED_REQUESTS_MENU_TITLE;
FOUNDATION_EXPORT NSString * const HIDE_SAVED_REQUESTS_MENU_TITLE;
FOUNDATION_EXPORT NSString * const SAVED_REQUESTS_VIEW_WIDTH;
FOUNDATION_EXPORT NSString * const DEFAULT_CONTENT_TYPE;
@interface CRCConstants : NSObject
@end