aboutsummaryrefslogtreecommitdiff
path: root/frame.rb
blob: a61c547f843e98891f4a22a8c52862098501d239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class Frame
  def initialize(iface, desc)
    @iface = iface
    @description = desc
  end

  attr_accessor :iface, :description

  def to(iface)
    t = dup
    t.iface = iface
    t
  end

  def ==(oth)
    @description == oth.description &&
    @iface == oth.iface
  end
end