Skeletal implementation of new characterset and screen methods.

This commit is contained in:
Gregory John Casamento 2019-04-08 07:36:38 -04:00
parent 0a77ddb0d2
commit 41f4fa411a
4 changed files with 67 additions and 0 deletions

View file

@ -98,6 +98,36 @@ extern "C" {
* 0x000A and 0x000D and nextline 0x0085 character.
*/
+ (id) newlineCharacterSet;
/**
* Returns allowed characers for URL fragment component.
*/
+ (id) URLFragmentAllowedCharacterSet;
/**
* Returns allowed characers for URL host component.
*/
+ (id) URLFragmentAllowedCharacterSet;
/**
* Returns allowed characers for URL password component.
*/
+ (id) URLPasswordAllowedCharacterSet;
/**
* Returns allowed characers for URL path component.
*/
+ (id) URLPathAllowedCharacterSet;
/**
* Returns allowed characers for URL query component.
*/
+ (id) URLQueryAllowedCharacterSet;
/**
* Returns allowed characers for URL USER component.
*/
+ (id) URLUserAllowedCharacterSet;
#endif
/**