From e33d8d2d7799271e94b4f1215c77d6a685f82b88 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 17 Sep 2013 13:23:40 -0400 Subject: Drop builtin command documentation Drop all GetTerseDocumentation and GetFullDocumentation methods from commands. The command documentation is now in Help/command/*.rst files. --- Source/cmWhileCommand.h | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'Source/cmWhileCommand.h') diff --git a/Source/cmWhileCommand.h b/Source/cmWhileCommand.h index 1bdf27af38..45badd00d5 100644 --- a/Source/cmWhileCommand.h +++ b/Source/cmWhileCommand.h @@ -68,32 +68,6 @@ public: */ virtual const char* GetName() const { return "while";} - /** - * Succinct documentation. - */ - virtual const char* GetTerseDocumentation() const - { - return "Evaluate a group of commands while a condition is true"; - } - - /** - * More documentation. - */ - virtual const char* GetFullDocumentation() const - { - return - " while(condition)\n" - " COMMAND1(ARGS ...)\n" - " COMMAND2(ARGS ...)\n" - " ...\n" - " endwhile(condition)\n" - "All commands between while and the matching endwhile are recorded " - "without being invoked. Once the endwhile is evaluated, the " - "recorded list of commands is invoked as long as the condition " - "is true. The condition is evaluated using the same logic as the " - "if command."; - } - cmTypeMacro(cmWhileCommand, cmCommand); }; -- cgit v1.2.1