Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the MSG_paje_output() function. It's a noop since 2 years
[simgrid.git] / src / bindings / ruby / RubyHost.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
11 require 'msg'
12 include MSG
13
14 class RbHost < Host
15 # Attributes
16   attr_accessor :bind, :data 
17   
18 # Initialize
19   def initialize()
20     @bind = 0
21     @data = nil
22   end
23   
24 end