예제 #1
0
파일: LuaNodeSet.hpp 프로젝트: DJoser/minko
 static
 NodeSet::Ptr
 whereWrapper(NodeSet::Ptr nodeSet, std::shared_ptr<LuaGlueFunctionRef> p)
 {
     return nodeSet->where(std::bind(
         &LuaGlueFunctionRef::invoke<bool, std::shared_ptr<Node>>,
         p,
         std::placeholders::_1
     ));
 }