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
Andreas Schuh 659b440f9e Support alternative namespaces in GFLAGS_NAMESPACE CMake variable.
The first element in the GFLAGS_NAMESPACE list is used as primary/default namespace. The symbols are then imported from this primary namespace into each of the other alternative namespaces with the using keyword. This is in particular used to maintain backwards compatibility with previous gflags library versions that used the "google" namespace instead of the new default "gflags" namespace.
2014-05-02 14:56:58 +01:00
cmake Support alternative namespaces in GFLAGS_NAMESPACE CMake variable. 2014-05-02 14:56:58 +01:00
doc doc: rename namespace from google (deprecated) to gflags (default) 2014-05-01 05:21:38 +04:00
src Support alternative namespaces in GFLAGS_NAMESPACE CMake variable. 2014-05-02 14:56:58 +01:00
test Add test which uses gflags_declare.h. 2014-03-30 15:16:00 +01:00
.gitattributes Add .gitattributes file to normalize all files to LF. 2014-03-19 14:48:03 +00:00
.gitignore Ignore packages subdirectory (if it exists). 2014-03-20 04:43:01 +00:00
AUTHORS.txt Enable packaging of library using CPack. 2014-03-20 02:11:44 +00:00
ChangeLog.txt Add ChangeLog entries for release 2.1.1. 2014-03-30 15:41:02 +01:00
CMakeLists.txt Support alternative namespaces in GFLAGS_NAMESPACE CMake variable. 2014-05-02 14:56:58 +01:00
COPYING.txt Enable packaging of library using CPack. 2014-03-20 02:11:44 +00:00
INSTALL.txt Enable packaging of library using CPack. 2014-03-20 02:11:44 +00:00
NEWS.txt Add NEWS of release version 2.1.1. 2014-03-30 15:18:26 +01:00
README.txt Remove devel package content summary from README 2014-03-27 01:11:30 +00:00

This package contains a library that implements commandline flags
processing.  As such it's a replacement for getopt().  It has increased
flexibility, including built-in support for C++ types like string, and
the ability to define flags in the source file in which they're used.