1
0

feat: finish clap manual namespace

This commit is contained in:
2025-10-02 18:19:11 +08:00
parent 5859264eca
commit 3dd0c85995
3 changed files with 12 additions and 14 deletions

View File

@@ -3,11 +3,9 @@
namespace yycc::carton::clap::summary {
Summary::Summary(const std::u8string_view &name,
const std::u8string_view &bin_name,
const std::u8string_view &author,
const std::u8string_view &version,
const std::u8string_view &description) :
name(name), bin_name(bin_name), author(author), version(version), description(description) {}
const std::u8string_view &description) : name(name), author(author), version(version), description(description) {}
Summary::~Summary() {}
@@ -15,10 +13,6 @@ namespace yycc::carton::clap::summary {
return this->name;
}
std::u8string_view Summary::get_bin_name() const {
return this->bin_name;
}
std::u8string_view Summary::get_author() const {
return this->author;
}