ENH: Make more commands scriptable

This commit is contained in:
Andy Cedilnik 2004-02-06 13:47:11 -05:00
parent f171b82377
commit 54785fafba
3 changed files with 15 additions and 0 deletions

View File

@ -53,6 +53,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -69,6 +69,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -46,6 +46,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/