Batchmake developers: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 7: | Line 7: | ||
* In the header file bmScriptActionManager.h : | * In the header file bmScriptActionManager.h : | ||
** Include the header of your class | ** Include the header of your class | ||
#include "bmScriptNewCommadAction.h" | |||
** In the GetKeywordList() function, add a new keyword | ** In the GetKeywordList() function, add a new keyword | ||
BM_NEWKEYWORD(_list, DownloadXcedeDataSet); |
Revision as of 19:53, 21 January 2008
Documentation for Developers.
Add new command to BatchMake
- Add a new class (bmScriptNewCommadAction.h, and bmScriptNewCommadAction.cxx)
- Don't forget to add it to the CMakeLists
- In the header file bmScriptActionManager.h :
- Include the header of your class
#include "bmScriptNewCommadAction.h"
- In the GetKeywordList() function, add a new keyword
BM_NEWKEYWORD(_list, DownloadXcedeDataSet);