我想ptree
对boost::property_tree
.
我使用 Visual Studio 2010 和 boost 版本 1.48.0。
我在我的 .h 中按以下方式进行前向声明
#ifndef OPTIONS_H_
#define OPTIONS_H_
namespace boost
{
namespace property_tree
{
class ptree;
}
}
class Options
{
// something
private:
boost::property_tree::ptree *m_pxPropertyTree;
};
#endif // OPTIONS_H_
然后,我使用 .cpp 中的类
#include <boost/property_tree/ptree.hpp>
using boost::property_tree::ptree;
Options::Options()
{
m_pxPropertyTree = new ptree();
// other stuff
}
当我尝试编译它时,我收到以下错误
错误 C2371:'boost::property_tree::ptree':重新定义。不同的基础类型。c:\lib\boost\1.48.0\32\boost\property_tree\ptree_fwd.hpp 95
(错误描述可能不同,我已经翻译了它,因为我有 Visual Studio 的意大利语版本)。
在 ptree_fwd.hpp 中给出错误的行如下
typedef basic_ptree<std::string, std::string> ptree;
相反,如果我不使用前向声明,一切顺利,我编译成功。
我做错了什么以及在这种情况下如何正确使用前向声明?