Subversion Repositories Projects

Rev

Rev 1562 | Go to most recent revision | 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
 
5
 
6
public class CompassHeadingRequestFrame extends RequestFrame {
7
 
8
        public CompassHeadingRequestFrame() {
9
                super(MK3MAG_ADDRESS);
10
        }
11
 
12
        @Override
13
        public void accept(RequestFrameVisitor o) throws IOException {
14
                o.visit(this);
15
        }
16
}