forked from nemomobile/mlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdatastore.h
71 lines (62 loc) · 2.19 KB
/
mdatastore.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation ([email protected])
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at [email protected].
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/
#ifndef MDATASTORE_H
#define MDATASTORE_H
#include "mdataaccess.h"
#include "mlite-global.h"
/*!
* Interface for reading and storing data.
*
* The difference between this class and \c MDataAccess is that this interface
* can also be used to create and remove keys.
*/
class MLITESHARED_EXPORT MDataStore : public MDataAccess
{
Q_OBJECT
public:
/*!
* Destroys the MDataStore.
*/
virtual ~MDataStore() {}
/*!
* This will add a new key with the given value or change the value of an
* existing key if the key already exists.
*
* Concrete implementations of MDataStore have to ensure that the data
* is being synchronized with the backend when this is called.
*
* \param key the key to set the value for
* \param value the value for the key
* \return \c true if the key was changed or added, \c false otherwise
*/
virtual bool createValue(const QString &key, const QVariant &value) = 0;
/*!
* Removes the data of the given key from the datastore.
* Concrete implementations of MDataStore have to ensure that the data is being synchronized
* with the backend when this is called.
*/
virtual void remove(const QString &key) = 0;
/*!
* Removes all entries in this datastore.
* Concrete implementations of MDataStore have to ensure that the data is being synchronized
* with the backend when this is called.
*/
virtual void clear() = 0;
};
#endif // MDATASTORE_H