Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. funcmap = {
  2. {"n", std::bind(msg::n, this, std::placeholders::_1, std::placeholders::_2)},
  3. {"a", std::bind(msg::a, this, std::placeholders::_1, std::placeholders::_2)},
  4. {"m", std::bind(msg::m, this, std::placeholders::_1, std::placeholders::_2)},
  5. {"t", std::bind(msg::t, this, std::placeholders::_1, std::placeholders::_2)},
  6. {"ch", std::bind(msg::ch, this, std::placeholders::_1, std::placeholders::_2)},
  7. {"hi", std::bind(msg::hi, this, std::placeholders::_1, std::placeholders::_2)},
  8. {"chown", std::bind(msg::chown, this, std::placeholders::_1, std::placeholders::_2)},
  9. {"chset", std::bind(msg::chset, this, std::placeholders::_1, std::placeholders::_2)},
  10. {"userset", std::bind(msg::userset, this, std::placeholders::_1, std::placeholders::_2)},
  11. {"adminmsg", std::bind(msg::adminmsg, this, std::placeholders::_1, std::placeholders::_2)},
  12. {"kickban", std::bind(msg::kickban, this, std::placeholders::_1, std::placeholders::_2)},
  13. {"-ls", std::bind(msg::lsl, this, std::placeholders::_1, std::placeholders::_2)},
  14. {"+ls", std::bind(msg::lsp, this, std::placeholders::_1, std::placeholders::_2)}
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement