1
0

feat: add all binstore headers and sources file

This commit is contained in:
2025-12-10 19:55:13 +08:00
parent a6668dff04
commit e4387439ee
6 changed files with 24 additions and 0 deletions

View File

@ -39,6 +39,8 @@ PRIVATE
yycc/carton/clap/parser.cpp
yycc/carton/clap/resolver.cpp
yycc/carton/binstore/types.cpp
yycc/carton/binstore/setting.cpp
yycc/carton/binstore/storage.cpp
)
target_sources(YYCCommonplace
PUBLIC
@ -102,8 +104,11 @@ FILES
yycc/carton/clap/validator.hpp
yycc/carton/clap/parser.hpp
yycc/carton/clap/resolver.hpp
yycc/carton/binstore.hpp
yycc/carton/binstore/types.hpp
yycc/carton/binstore/serializer.hpp
yycc/carton/binstore/setting.hpp
yycc/carton/binstore/storage.hpp
yycc/carton/fft.hpp
)
# Setup header infomations

View File

@ -0,0 +1,5 @@
#pragma once
namespace yycc::carton::binstore {
}

View File

@ -0,0 +1,3 @@
#pragma once
namespace yycc::carton::binstore::setting {}

View File

@ -0,0 +1,3 @@
#pragma once
namespace yycc::carton::binstore::setting {}

View File

@ -0,0 +1,3 @@
#include "storage.hpp"
namespace yycc::carton::binstore::storage {}

View File

@ -0,0 +1,5 @@
#pragma once
namespace yycc::carton::binstore::storage {
}