matrix-3ds-sdk/source/memorystore.h

24 lines
447 B
C
Raw Permalink Normal View History

2019-10-17 10:45:55 +02:00
#ifndef _memorystore_h_
#define _memorystore_h_
#include <string>
2023-12-11 21:21:45 +01:00
#include "../include/matrixclient.h"
2019-10-17 10:45:55 +02:00
namespace Matrix {
class MemoryStore : public Store {
2023-12-11 21:21:45 +01:00
private:
std::string syncToken = "";
std::string filterId = "";
public:
void setSyncToken(std::string token);
std::string getSyncToken();
void setFilterId(std::string fid);
std::string getFilterId();
2019-10-17 10:45:55 +02:00
};
2023-12-11 21:21:45 +01:00
}; // namespace Matrix
2019-10-17 10:45:55 +02:00
2023-12-11 21:21:45 +01:00
#endif // _memorystore_h_