诸暨麻将添加redis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 regels
372 B

  1. #pragma once
  2. #include <vector>
  3. #include <unordered_map>
  4. class ReplayRecordManager
  5. {
  6. public:
  7. static ReplayRecordManager& Instance()
  8. {
  9. static ReplayRecordManager instance;
  10. return instance;
  11. }
  12. ~ReplayRecordManager();
  13. private:
  14. ReplayRecordManager();
  15. std::unordered_map<UINT32, std::list<CMD_GR_ReplayRecordResp>> m_userRecords;
  16. };