1
0

2 Commits

Author SHA1 Message Date
f078dd4399 feat: add comprehensive header for clap 2025-12-10 19:58:52 +08:00
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

View File

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

View File

@@ -1,7 +1,14 @@
#pragma once #pragma once
#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"
namespace yycc::carton::clap { // TODO: Support multiple arguments for single option.
// TODO: Support multiple arguments for single option. namespace yycc::carton::clap {}
}