/* * bbtkSystemTools.h * * Created on: Apr 23, 2012 * Author: pechan */ #ifndef BBTKSYSTEMTOOLS_H_ #define BBTKSYSTEMTOOLS_H_ #include namespace bbtk { class BBTK_EXPORT bbtkSystemTools { public: bbtkSystemTools(); virtual ~bbtkSystemTools(); public: /** * This method executes CreatePackage */ static void CreatePackage(); /** * This method executes CreateBlackBox */ static void CreateBlackBox(); /** * This method executes bbi */ static void ExecuteBbi(); /** * This method executes creaNewProject */ static void ExecuteCreaNewProject(); }; }// namespace bbtk #endif /* BBTKSYSTEMTOOLS_H_ */