1 /*******************************************************************************
2 ********************************************************************************
4 Copyright (c) 2008 Ahmed S. Badran
6 Licensed under the FreeBSD License (see LICENSE)
9 Description: Implementation.
10 Created: 12/15/2008 11:04:49 PM PST
11 Author: Ahmed S. Badran (Ahmed B.), ahmed.badran@gmail.com
13 ********************************************************************************
14 *******************************************************************************/
19 using namespace vimicxx
;
21 cmd_help::cmd_help (const string
& n
):
27 cmd_help::execute (conf
* cnf
) const
29 printf("usage: %s <command> <command-options>\n", name
.c_str());
31 printf("\tadd project <project-name> <project-path>\n");
32 printf("\tlist [<project-name>]\n");
33 printf("\tdelete [<project-name>]\n");
34 printf("\tdelete-all\n");
36 printf("\t--help\n\n");
41 cmd_help::err_msg () const
46 cmd_help::~cmd_help ()