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