mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-08-05 10:46:29 -04:00
54 lines
2.1 KiB
HTML
54 lines
2.1 KiB
HTML
|
|
<!--
|
|
-
|
|
- file: index.html
|
|
-
|
|
- Copyright (c) 2003, Michael E. Smoot .
|
|
- All rights reverved.
|
|
-
|
|
- See the file COPYING in the top directory of this distribution for
|
|
- more information.
|
|
-
|
|
- THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
- DEALINGS IN THE SOFTWARE.
|
|
-
|
|
-->
|
|
|
|
<html>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<td align="left">
|
|
<h1>tclap -- Templatized C++ Command Line Parser Library </h1>
|
|
</td>
|
|
<td align="right"><a href="http://sourceforge.net">
|
|
<img src="http://sourceforge.net/sflogo.php?group_id=76645&type=4"
|
|
width="125" height="37" border="0" alt="SourceForge.net Logo" /></a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
This is a small library that provides a simple interface for defining
|
|
and accessing command line arguments. It was intially inspired by the
|
|
user friendly <a href="http://www.cs.bgu.ac.il/~cgproj/CLAP/">CLAP</a>
|
|
libary. The difference is that this library is templatized so the argument
|
|
class is type independent which avoids identical-except-for-type objects
|
|
like IntArg, FloatArg,
|
|
StringArg, etc. While the library is probably not strictly compliant with
|
|
the GNU or POSIX standards, its getting close.
|
|
<ul>
|
|
<li> See the <a href="manual.html"><b>manual</b></a> for how things work.</li>
|
|
<li> See the <a href="html/index.html"><b>API</b></a> documentation for detailed
|
|
implementation information.</li>
|
|
<li>Visit the <a href="http://sourceforge.net">Sourceforge</a> project <a href="http://sourceforge.net/projects/tclap/">page</a>.
|
|
<li><a href="https://sourceforge.net/projects/tclap/"><b>Download</b></a> the source here.</li>
|
|
<li>Send any feeback, comments, patches, etc. to mes (_at_) aescon (_dot_) com.</li>
|
|
</ul>
|
|
Happy coding!
|
|
</body>
|
|
</html>
|