class Tdms::Property

Attributes

data[RW]
name[RW]

Public Class Methods

new(name=nil, data=nil) click to toggle source
# File lib/tdms/property.rb, line 7
def initialize(name=nil, data=nil)
  @name = name
  @data = data
end

Public Instance Methods

value() click to toggle source
# File lib/tdms/property.rb, line 12
def value
  data.value
end