The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used. Online documentation available at:
Find a file
Craig Silverstein 874aed5db7 NOTE: I'm checking this in just to have a record in source control of the idea. We've decided for now it doesn't make sense to go forward with flag categories -- and the __VA_ARGS__ for macros has caused lots of problems with uncaught accidental commas, already -- so a future commit will back this out. (Actually, it's all a series of commits, for annoying technical reasons.)
Add support for flag categories.

In this CL, all you can do is set categories in the DEFINE_*
macros and then retrieve them via GetCommandLineFlagInfo and
similar.

In future CLs, we will start to give some semantic meaning to
particular flag values, as described in the designdoc.  In
particular, we will start to use flag categories to revamp
--help output.

Implementation-wise: to keep categories an optional macro
argument, I had to use __VA_ARGS__, which means future gflags
releases will no longer work with MSVC 7.1.  We're at MSVC 10
now, so I'm pretty much ok with that.

The downside of __VA_ARGS__ is there is no error if you
specify more args after the ones we expect.  To get around
that, I only use __VA_ARGS_ in this idiom:
static const OptionalDefineArgs var = { __VA_ARGS__ };
The new OptionalDefineArgs struct defines all the args that
may be optionally specified in the DEFINE_* macros.  For now,
that's only the 'categories' arg, though in theory more could be
added later.

R=titus,ncalvin
DELTA=92  (54 added, 3 deleted, 35 changed)


Revision created by MOE tool push_codebase.
MOE_MIGRATION=3057


git-svn-id: https://gflags.googlecode.com/svn/trunk@61 6586e3c6-dcc4-952a-343f-ff74eb82781d
2011-11-03 23:08:41 +00:00
doc * Minor correction for doc of shorthelp (soerenme, mecarson) 2011-07-28 06:19:07 +00:00
m4 * Update acx_pthread.m4 for nostdlib (liujisi) 2011-03-02 08:05:17 +00:00
packages Ready to release gflags 1.6! 2011-07-30 02:57:58 +00:00
src NOTE: I'm checking this in just to have a record in source control of the idea. We've decided for now it doesn't make sense to go forward with flag categories -- and the __VA_ARGS__ for macros has caused lots of problems with uncaught accidental commas, already -- so a future commit will back this out. (Actually, it's all a series of commits, for annoying technical reasons.) 2011-11-03 23:08:41 +00:00
vsprojects * Split up flag declares into its own file (jyrki) 2011-04-21 19:22:43 +00:00
aclocal.m4 Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
AUTHORS gflags 0.1 2007-03-22 00:15:41 +00:00
autogen.sh Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
ChangeLog Ready to release gflags 1.6! 2011-07-30 02:57:58 +00:00
config.guess Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
config.sub Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
configure Ready to release gflags 1.6! 2011-07-30 02:57:58 +00:00
configure.ac Ready to release gflags 1.6! 2011-07-30 02:57:58 +00:00
COPYING gflags 0.1 2007-03-22 00:15:41 +00:00
depcomp Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
google-gflags.sln * PORTING: Add windows (MSVC) support (csilvers) 2009-11-10 16:33:51 +00:00
INSTALL Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
install-sh Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
ltmain.sh * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
Makefile.am Some reorganization that results from a new method I'm moving to to 2011-07-29 04:26:49 +00:00
Makefile.in Some reorganization that results from a new method I'm moving to to 2011-07-29 04:26:49 +00:00
missing Update to automake 1.10.1 (from 1.9), and downdate to autoconf 2.62 2011-07-29 03:48:59 +00:00
NEWS Ready to release gflags 1.6! 2011-07-30 02:57:58 +00:00
README * Reduce .o size by decomposing switches (jyrki) 2010-09-16 18:53:42 +00:00
README_windows.txt * Split up flag declares into its own file (jyrki) 2011-04-21 19:22:43 +00:00

This repository contains a C++ of the Google commandline flags module.
Documentation for the C++ implementation is in doc/. The python version of
gflags is now shipped seperately as it is completely independent of this
module.

See INSTALL for (generic) installation instructions for C++: basically
   ./configure && make && make install

See README_windows.txt for instructions on using under windows.