29 lines
652 B
C
29 lines
652 B
C
|
#ifndef _INCLUDE_IVAULT_H
|
||
|
#define _INCLUDE_IVAULT_H
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
class IVault
|
||
|
{
|
||
|
public:
|
||
|
virtual ~IVault() { }
|
||
|
public:
|
||
|
virtual bool GetValue(const char *key, time_t &stamp, char buffer[], size_t len) =0;
|
||
|
virtual void SetValue(const char *key, const char *val) =0;
|
||
|
virtual void SetValue(const char *key, const char *val, time_t stamp) =0;
|
||
|
virtual size_t Prune(time_t start, time_t end) =0;
|
||
|
virtual void Clear() =0;
|
||
|
virtual void Remove(const char *key) =0;
|
||
|
virtual size_t Items() =0;
|
||
|
};
|
||
|
|
||
|
class IVaultMngr
|
||
|
{
|
||
|
public:
|
||
|
virtual IVault *OpenVault(const char *name) =0;
|
||
|
};
|
||
|
|
||
|
typedef IVaultMngr *(*GETVAULTMNGR_FUNC)();
|
||
|
|
||
|
#endif //_INCLUDE_IVAULT_H
|