aboutsummaryrefslogtreecommitdiff
path: root/frame.rb
blob: 70216c804bd6e98604c58a1ace8800483505ac43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
end