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 0baf4ab4f6 * Remove reference to InitGoogle (csilvers)
* Remove superfluous friend declaration (mec)
	* Better reporting of current vs default value (handler)
	* Allow cleaning up of memory at program-exit (jmarantz)
	* Put CompileAssert in correct namespace (csilvers)


git-svn-id: https://gflags.googlecode.com/svn/trunk@43 6586e3c6-dcc4-952a-343f-ff74eb82781d
2011-01-14 21:58:28 +00:00
doc * Reduce .o size by decomposing switches (jyrki) 2010-09-16 18:53:42 +00:00
m4 * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
packages Wed Oct 13 17:40:12 2010 Google Inc. <opensource@google.com> 2010-10-14 01:17:43 +00:00
src * Remove reference to InitGoogle (csilvers) 2011-01-14 21:58:28 +00:00
vsprojects * PORTING: Add windows (MSVC) support (csilvers) 2009-11-10 16:33:51 +00:00
aclocal.m4 * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
AUTHORS gflags 0.1 2007-03-22 00:15:41 +00:00
autogen.sh Mon Jan 4 18:09:30 2010 Google Inc. <opensource@google.com> 2010-01-05 02:25:45 +00:00
ChangeLog Wed Oct 13 17:40:12 2010 Google Inc. <opensource@google.com> 2010-10-14 01:17:43 +00:00
compile gflags 0.1 2007-03-22 00:15:41 +00:00
config.guess * Remove reference to InitGoogle (csilvers) 2011-01-14 21:58:28 +00:00
config.sub * Remove reference to InitGoogle (csilvers) 2011-01-14 21:58:28 +00:00
configure * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
configure.ac * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
COPYING gflags 0.1 2007-03-22 00:15:41 +00:00
depcomp Tue Jun 12 15:23:42 2007 Google Inc. <opensource@google.com> 2007-06-12 23:59:42 +00:00
google-gflags.sln * PORTING: Add windows (MSVC) support (csilvers) 2009-11-10 16:33:51 +00:00
INSTALL Tue Apr 14 12:35:25 2009 Google Inc. <opensource@google.com> 2009-04-15 21:57:04 +00:00
install-sh Tue Jun 12 15:23:42 2007 Google Inc. <opensource@google.com> 2007-06-12 23:59:42 +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 * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
Makefile.in * Use our own string typedef so macro is never confused (csilvers) 2010-11-16 23:21:00 +00:00
missing Tue Jun 12 15:23:42 2007 Google Inc. <opensource@google.com> 2007-06-12 23:59:42 +00:00
mkinstalldirs Tue Jun 12 15:23:42 2007 Google Inc. <opensource@google.com> 2007-06-12 23:59:42 +00:00
NEWS Wed Oct 13 17:40:12 2010 Google Inc. <opensource@google.com> 2010-10-14 01:17:43 +00:00
README * Reduce .o size by decomposing switches (jyrki) 2010-09-16 18:53:42 +00:00
README_windows.txt * Reduce .o size by decomposing switches (jyrki) 2010-09-16 18:53:42 +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.