Programming Languages: C++
License: MIT License
browse code,
statistics git clone git://tclap.git.sourceforge.net/gitroot/tclap/tclap (read-only)
Pls ignore my post; it seems to be working fine...
2012-05-03 22:49:07 PDT by hariranga
help2man (http://www.gnu.org/software/help2man/) is a very useful tool for creating man page from application help. However, it seems to have trouble parsing the default TCLAP format. Perhaps, someone has already written a GNU-format help screen class for TCLAP? Thanks.
2012-05-03 22:18:02 PDT by hariranga
I'm not the sysadmin and couldn't install packages without a request/delay, but during the build process the docs failed, get access to the completed product I had to disable the docs from building. I'm looking into what caused the issue. (they had dot installed but not graphviz, wonder if that had anything to do with it.)
2012-04-20 09:47:34 PDT by kotoroshinoto
I forgot to say that following two files must also be changed include/Makefile.am, line 26, add "FunctionConstraint.h/" include/Makefile.in, line 175, add "FunctionConstraint.h/".
2012-03-01 00:33:57 PST by Francesco Montesano
I have derived FunctionConstraint from from Constraint<T> (TCLAP version 1.2.1) The constructor FunctionConstraint(bool (*f)(T), std::string desc) accept a function of the kind "bool func(T val)" and a string "desc" which describe which kind of contraints are implemented in "func". Then bool FunctionConstraint<T>::check( const T& val ) simply calls...
2012-02-29 12:11:21 PST by Francesco Montesano