Cocoa Generator should use local file imports for base Thrift headers
---------------------------------------------------------------------
Key: THRIFT-1504
URL: https://issues.apache.org/jira/browse/THRIFT-1504
Project: Thrift
Issue Type: Bug
Components: Cocoa - Compiler
Affects Versions: 0.8
Reporter: Steve White
Priority: Minor
The Cocoa generator imports various thrift files as global imports instead of
local importss. This ends up requiring that the user alter their header search
paths to include the directories the generated thrift code is in, or the user
has to edit the generated files to remove this.
e.g.
#import <TProtocol.h>
#import <TApplicationException.h>
#import <TProtocolUtil.h>
#import <TProcessor.h>
vs.
#import "TProtocol.h"
#import "TApplicationException.h"
#import "TProtocolUtil.h"
#import "TProcessor.h"
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira