Subversion Repositories Projects

Rev

Rev 1564 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1562 - 1
package dongfang.mkt.frames;
2
 
3
import java.io.IOException;
4
 
1566 - 5
import dongfang.mkt.RequestFrameVisitor;
1562 - 6
 
1566 - 7
 
1562 - 8
public class CompassHeadingRequestFrame extends RequestFrame {
9
 
10
        public CompassHeadingRequestFrame() {
11
                super(MK3MAG_ADDRESS);
12
        }
13
 
14
        @Override
15
        public void accept(RequestFrameVisitor o) throws IOException {
16
                o.visit(this);
17
        }
18
}