【发布时间】:2016-07-13 04:40:05
【问题描述】:
假设我有两个文件
Something.thrift
namespace cpp something
struct Something { ... }
Marvelous.thrift
include "Something.thrift"
namespace cpp marvelous
struct IncludingSomething {
1: required something::Something;
}
这里无法识别范围解析运算符,如何从Marvelous.thrift访问Something?
【问题讨论】:
标签: c++ namespaces thrift