예제 #1
0
파일: actor.hpp 프로젝트: nousxiong/actorx
 void pack_arg(message& msg, Arg&& arg, Args&&... args)
 {
     msg.put(arg);
     pack_arg(msg, std::forward<Args>(args)...);
 }
예제 #2
0
파일: actor.hpp 프로젝트: nousxiong/actorx
 void pack_arg(message& msg, Arg&& arg)
 {
     msg.put(arg);
 }