class SMF::ExclusiveF7
Attributes
data[RW]
Public Class Methods
new(offset, data)
click to toggle source
Calls superclass method
SMF::Event::new
# File lib/smf.rb, line 521 def initialize(offset, data) # data.length:0/2**28-1 super(offset) @data = data end
Public Instance Methods
==(other)
click to toggle source
Calls superclass method
SMF::Event#==
# File lib/smf.rb, line 529 def == (other) super && data == other.data end