Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simple example ruby using simdag (first tests)
[simgrid.git] / src / bindings / rubyDag / rb_SD_workstation.h
diff --git a/src/bindings/rubyDag/rb_SD_workstation.h b/src/bindings/rubyDag/rb_SD_workstation.h
new file mode 100644 (file)
index 0000000..8fadfec
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef RB_SD_WORKSTATION_H
+#define RB_SD_WORKSTATION_H
+
+#include <ruby.h>
+#include <simdag/simdag.h>
+
+// free
+static void SD_workstation_free(SD_workstation_t);
+
+// Workstation List
+static VALUE rb_SD_workstation_list(VALUE Class);
+
+// Workstation number
+static VALUE rb_SD_workstation_number(VALUE Class);
+
+// Workstation name
+static VALUE rb_SD_workstation_name(VALUE Class,VALUE workstation);
+
+#endif
\ No newline at end of file