b1cac31c33245938abb3f43a32c491f5caf1c58b
[ruby-eet.git] / test / common.rb
1 # $Id: common.rb 2 2005-03-26 13:39:17Z tilman $
2
3 class WrappedString
4         def initialize(blah)
5                 @blah = blah
6         end
7
8         private
9         def to_eet_name
10                 "String"
11         end
12
13         def to_eet_properties
14                 {"buf" => [@blah]}
15         end
16 end