Subversion Repositories Projects

Rev

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

package dongfang.mkt.frames;

import java.io.IOException;

import dongfang.mkt.RequestFrameVisitor;


public class CompassHeadingRequestFrame extends RequestFrame {

        public CompassHeadingRequestFrame() {
                super(MK3MAG_ADDRESS);
        }

        @Override
        public void accept(RequestFrameVisitor o) throws IOException {
                o.visit(this);
        }
}