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

23 lines
420 B
C
Raw Normal View History

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