Я использую boost :: ptree для разбора файлов.Проблема в том, что я не могу создать объект в куче.Все примеры только для стека.
#include <boost/property_tree/ptree.hpp>
ptree *tree_handle;
read_info("path", tree_handle);
Мне это нужно, потому что код находится в функции, и я должен вернуть из него объект ptree.
Ошибки:
‘boost::property_tree::basic_ptree<std::basic_string<char>, std::basic_string<char> >*’ is not a class, struct, or union type
request for member ‘swap’ in ‘pt’, which is of non-class type ‘boost::property_tree::basic_ptree<std::basic_string<char>, std::basic_string<char> >*’
Есть идеи?