This patch adds namespace support to a client and processor extended from an included thrift def with its own namespace.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@764540
13f79535-47bb-0310-9956-
ffa450edef68
string extends = "";
string extends_client = "";
if (tservice->get_extends() != NULL) {
- extends = type_name(tservice->get_extends());
+ extends = full_type_name(tservice->get_extends());
extends_client = " < " + extends + "::Client ";
}
string extends = "";
string extends_processor = "";
if (tservice->get_extends() != NULL) {
- extends = type_name(tservice->get_extends());
+ extends = full_type_name(tservice->get_extends());
extends_processor = " < " + extends + "::Processor ";
}