2 Commits
Author SHA1 Message Date
yyc12345 f078dd4399 feat: add comprehensive header for clap 2025-12-10 19:58:52 +08:00
yyc12345 e4387439ee feat: add all binstore headers and sources file 2025-12-10 19:55:13 +08:00
7 changed files with 35 additions and 4 deletions
+5
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
+5
View File
@@ -0,0 +1,5 @@
#pragma once
namespace yycc::carton::binstore {
}
+3
View File
@@ -0,0 +1,3 @@
#pragma once
namespace yycc::carton::binstore::setting {}
+3
View File
@@ -0,0 +1,3 @@
#pragma once
namespace yycc::carton::binstore::setting {}
+3
View File
@@ -0,0 +1,3 @@
#include "storage.hpp"
namespace yycc::carton::binstore::storage {}
+5
View File
@@ -0,0 +1,5 @@
#pragma once
namespace yycc::carton::binstore::storage {
}
+10 -3
View File
@@ -1,7 +1,14 @@
#pragma once
namespace yycc::carton::clap {
#include "clap/types.hpp"
#include "clap/validator.hpp"
#include "clap/option.hpp"
#include "clap/variable.hpp"
#include "clap/summary.hpp"
#include "clap/application.hpp"
#include "clap/manual.hpp"
#include "clap/parser.hpp"
#include "clap/resolver.hpp"
// TODO: Support multiple arguments for single option.
}
namespace yycc::carton::clap {}