class SMF::Text

Attributes

text[RW]

Public Class Methods

new(offset, text) click to toggle source
Calls superclass method SMF::Meta::new
# File lib/smf.rb, line 564
def initialize(offset, text)
  # text.length:0/2**28-1
  super(offset)
  @text = text
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method SMF::Event#==
# File lib/smf.rb, line 572
def == (other)
  super && text == other.text
end