mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
enh: Add usage of DEFINE_validator to test project
This commit is contained in:
parent
02f3189788
commit
9ef0d5220e
1 changed files with 7 additions and 0 deletions
|
@ -3,9 +3,16 @@
|
|||
|
||||
DEFINE_string(message, "Hello World!", "The message to print");
|
||||
|
||||
static bool ValidateMessage(const char* flagname, const std::string &message)
|
||||
{
|
||||
return !message.empty();
|
||||
}
|
||||
DEFINE_validator(message, ValidateMessage);
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
gflags::SetUsageMessage("Test CMake configuration of gflags library (gflags-config.cmake)");
|
||||
gflags::SetVersionString("0.1");
|
||||
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
||||
std::cout << FLAGS_message << std::endl;
|
||||
gflags::ShutDownCommandLineFlags();
|
||||
|
|
Loading…
Add table
Reference in a new issue