美好的一天。
我的项目中有一个Types.hpp文件。在其中我有:
....
namespace RC
{
.....
.....
struct ViewSettings
{
....
};
.....
}
在Server.cpp文件中,我包含了这个Types.hpp文件,我有:
class Session
{
.....
RC::ViewSettings tmp;
boost::asio::async_read(socket_, boost::asio::buffer(&tmp, sizeof(RC::ViewSettings)),
boost::bind(&Session::Finish_Reading_Data, shared_from_this(), boost::asio::placeholders::error));
.....
}
在编译过程中我遇到了错误:
error C2825: 'F': must be a class or namespace when followed by '::'
: see reference to class template instantiation 'boost::_bi::result_traits<R,F>'
being compiled with
[
R=boost::_bi::unspecified,
F=void (__thiscall Session::* )(void)
]
: see reference to class template instantiation 'boost::_bi::bind_t<R,F,L>'
being compiled with
[
R=boost::_bi::unspecified,
F=void (__thiscall Session::* )(void),
L=boost::_bi::list2<boost::_bi::value<boost::shared_ptr<Session>>,boost::arg<1>>
]
error C2039: 'result_type' : is not a member of '`global namespace''
这样的代码以正确的方式工作:
int w;
boost::asio::async_read(socket_, boost::asio::buffer(&w, sizeof(int)),
boost::bind(&Session::Handle_Read_Width, shared_from_this(), boost::asio::placeholders::error));
请帮忙。这有什么问题? 提前谢谢。
答案 0 :(得分:0)
您正在尝试传输结构,而不仅仅是简单类型。这就是为什么它适用于int,并且不适用于struct。
我认为这是序列化领域,所以我认为你需要boost.serialization。
http://www.boost.org/doc/libs/1_43_0/doc/html/boost_asio/examples.html 检查这个序列化示例,也许这会帮助你。
答案 1 :(得分:0)
您需要从boost::enable_shared_from_this<Session>.