Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tesh version 2
[simgrid.git] / tools / tesh2 / include / suite.h
diff --git a/tools/tesh2/include/suite.h b/tools/tesh2/include/suite.h
new file mode 100644 (file)
index 0000000..5f175e9
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef __SUITE_H      
+#define __SUITE_H
+
+#include <com.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+suite_t
+suite_new(unit_t owner, const char* description);
+
+void
+suite_include_unit(suite_t suite, unit_t unit);
+
+void
+suite_free(suite_t* suite);
+
+#ifdef __cplusplus
+extern }
+#endif
+
+
+#endif /* !__SUITE_H */
+