cmCommands.h 779 B

123456789101112131415161718192021222324252627282930
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2000 National Library of Medicine
  8. All rights reserved.
  9. See COPYRIGHT.txt for copyright details.
  10. =========================================================================*/
  11. #ifndef cmCommands_h
  12. #define cmCommands_h
  13. #include "cmStandardIncludes.h"
  14. class cmCommand;
  15. /**
  16. * Global function to return all compiled in commands.
  17. * To add a new command edit cmCommands.cxx and add your command.
  18. * It is up to the caller to delete the commands created by this
  19. * call.
  20. */
  21. void GetPredefinedCommands(std::list<cmCommand*>& commands);
  22. #endif