Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update platfrom version to 3.
[simgrid.git] / src / bindings / rubyDag / rb_SD_workstation.h
1 /* Copyright (c) 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5   * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef RB_SD_WORKSTATION_H
8 #define RB_SD_WORKSTATION_H
9
10 #include <ruby.h>
11 #include <simdag/simdag.h>
12
13 // free
14 static void SD_workstation_free(SD_workstation_t);
15
16 // Workstation List
17 static VALUE rb_SD_workstation_list(VALUE Class);
18
19 // Workstation number
20 static VALUE rb_SD_workstation_number(VALUE Class);
21
22 // Workstation name
23 static VALUE rb_SD_workstation_name(VALUE Class, VALUE workstation);
24
25 #endif