From 5ae5f57bbbbd6860dcdded35b7f2226cc0564301 Mon Sep 17 00:00:00 2001 From: mes5k Date: Wed, 11 Aug 2004 02:46:12 +0000 Subject: [PATCH] tweaked for usage --- examples/test7.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/test7.cpp b/examples/test7.cpp index e43de3d..71f1610 100644 --- a/examples/test7.cpp +++ b/examples/test7.cpp @@ -10,7 +10,7 @@ int main(int argc, char** argv) try { // Define the command line object. - CmdLine cmd("Command description message", ' ', "0.9"); + CmdLine cmd("Command description message. This is a long multi-line message meant to test line wrapping. This is more text that doesn't really do anything besides take up lots of space that otherwise might be used for something real. That should be enough, don't you think?", ' ', "0.9"); vector allowed; allowed.push_back("homer"); @@ -19,7 +19,7 @@ int main(int argc, char** argv) allowed.push_back("lisa"); allowed.push_back("maggie"); - MultiArg nameArg("n","name","Name to print",true,allowed); + MultiArg nameArg("n","name","Name to print. This is a long, nonsensical message to test line wrapping. Hopefully it works.",true,allowed); cmd.add( nameArg ); vector iallowed;