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

@@ -4,11 +4,10 @@
#include <string_view>
namespace yycc::carton::clap::summary {
class Summary {
public:
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);
@@ -17,13 +16,12 @@ namespace yycc::carton::clap::summary {
public:
std::u8string_view get_name() const;
std::u8string_view get_bin_name() const;
std::u8string_view get_author() const;
std::u8string_view get_version() const;
std::u8string_view get_description() const;
private:
std::u8string name, bin_name, author, version, description;
std::u8string name, author, version, description;
};
}
} // namespace yycc::carton::clap::summary