--- /dev/null
+/*
+ * bbtkSystemTools.cxx
+ *
+ * Created on: Apr 23, 2012
+ * Author: Diego Caceres
+ */
+
+#include "bbtkSystemTools.h"
+
+bbtkSystemTools::bbtkSystemTools()
+{
+ // TODO Auto-generated constructor stub
+
+}
+
+bbtkSystemTools::~bbtkSystemTools()
+{
+ // TODO Auto-generated destructor stub
+}
+
+void bbtkSystemTools::CreatePackage()
+{
+ system("bbi toolsbbtk/appli/GUICreateBlackBox.bbs &");
+}
+
+void bbtkSystemTools::CreateBlackBox()
+{
+ system("bbi toolsbbtk/appli/GUICreateBlackBox.bbs &");
+}
+void bbtkSystemTools::ExecuteBbi()
+{
+ system("bbi &");
+}
+void bbtkSystemTools::ExecuteCreaNewProject()
+{
+ system("creaNewProject &");
+}
+
--- /dev/null
+/*
+ * bbtkSystemTools.h
+ *
+ * Created on: Apr 23, 2012
+ * Author: pechan
+ */
+
+#ifndef BBTKSYSTEMTOOLS_H_
+#define BBTKSYSTEMTOOLS_H_
+
+#include <cstdlib>
+
+class 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();
+};
+
+#endif /* BBTKSYSTEMTOOLS_H_ */