matrix-3ds-sdk/source/memorystore.h
2019-10-17 10:45:55 +02:00

20 lines
339 B
C++

#ifndef _memorystore_h_
#define _memorystore_h_
#include "../include/matrixclient.h"
#include <string>
namespace Matrix {
class MemoryStore : public Store {
private:
std::string syncToken;
public:
MemoryStore();
void setSyncToken(std::string token);
std::string getSyncToken();
};
}; // namespace Matrix
#endif // _memorystore_h_