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