Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
More ruby cleanups: stop defining everything static, and prefix functions with rb_...
[simgrid.git] / src / bindings / ruby / RubyTask.rb
1
2 #  * $Id$
3 #  *
4 #  * Copyright 2010 Martin Quinson, Mehdi Fekari           
5 #  * All right reserved. 
6 #  *
7 #  * This program is free software; you can redistribute 
8 #  * it and/or modify it under the terms of the license 
9 #  *(GNU LGPL) which comes with this package. 
10 require 'msg'
11 include MSG
12
13 class RbTask < Task
14   
15   
16 # Attributes
17   attr_accessor :bind 
18   
19   
20 #   Initialize
21   def initialize(name,comp_size,comm_size)
22 #      @bind = 10
23     super(name,comp_size,comm_size)
24     end
25   
26
27 end