Skip to content

Commit c2d6e91

Browse files
committed
Turn TDBStore and FileSystemStore into standalone libraries
1 parent c62b8e5 commit c2d6e91

File tree

6 files changed

+8
-2
lines changed

6 files changed

+8
-2
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "filesystemstore"
3+
}

storage/kvstore/source/FileSystemStore.cpp renamed to storage/kvstore/filesystemstore/source/FileSystemStore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "kvstore/FileSystemStore.h"
19+
#include "filesystemstore/FileSystemStore.h"
2020
#include "kv_config/kv_config.h"
2121
#include "filesystem/Dir.h"
2222
#include "filesystem/File.h"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "tdbstore"
3+
}

storage/kvstore/source/TDBStore.cpp renamed to storage/kvstore/tdbstore/source/TDBStore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
// ----------------------------------------------------------- Includes -----------------------------------------------------------
1818

19-
#include "kvstore/TDBStore.h"
19+
#include "tdbstore/TDBStore.h"
2020

2121
#include <algorithm>
2222
#include <string.h>

0 commit comments

Comments
 (0)