#ifndef WXHELPER_CONTACT_MGR_H_ #define WXHELPER_CONTACT_MGR_H_ #include #include #include "base_mgr.h" #include "wechat_function.h" namespace wxhelper { class ContactMgr : public BaseMgr { public: explicit ContactMgr(DWORD base); ~ContactMgr(); int GetAllContact(std::vector& vec); int DelContact(wchar_t* wxid); std::wstring GetContactOrChatRoomNickname(wchar_t* id); int AddFriendByWxid(wchar_t* wxid,wchar_t* msg); int VerifyApply(wchar_t *v3, wchar_t *v4,int permission); }; } // namespace wxhelper #endif;