GroupStateStore.h 252 B

12345678910111213
  1. #include <GroupState.h>
  2. #ifndef _GROUP_STATE_STORE_H
  3. #define _GROUP_STATE_STORE_H
  4. class GroupStateStore {
  5. public:
  6. virtual GroupState* get(const GroupId& id) = 0;
  7. virtual GroupState* set(const GroupId& id, const GroupState& state) = 0;
  8. };
  9. #endif