诸暨麻将添加redis
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
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. };