Rev 1564 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1540 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
1566 | - | 5 | import dongfang.mkt.RequestFrameVisitor; |
1540 | - | 6 | |
1566 | - | 7 | |
1540 | - | 8 | public class VersionRequestFrame extends RequestFrame { |
9 | public VersionRequestFrame(int address) { |
||
10 | super(address); |
||
11 | } |
||
12 | |||
13 | @Override |
||
14 | public void accept(RequestFrameVisitor o) throws IOException { |
||
15 | o.visit(this); |
||
16 | } |
||
17 | } |