c++ 中的前向声明
我想转发声明:
namespace boost {
namespace property_tree {
template<typename Key, typename Data, typename KeyCompare = std::less<Key> >
class basic_ptree;
typedef basic_ptree< std::string, std::string > ptree;
}
}
但我的 g++ cribs 关于由于默认模板参数而重新定义。我怎样才能实现这个目标?
I want to forward declare:
namespace boost {
namespace property_tree {
template<typename Key, typename Data, typename KeyCompare = std::less<Key> >
class basic_ptree;
typedef basic_ptree< std::string, std::string > ptree;
}
}
but my g++ cribs about redefinition due to default template argument. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要前向声明 property_tree,您应该包含
标头,而不是自己声明。
To forward-declare the property_tree, you should include the
header, instead of declaring one yourself.