Go to the documentation of this file.00001 package org.rosbuilding.common;
00002
00003 import java.io.IOException;
00004
00005 import org.ros.internal.message.Message;
00006
00007 public class Module<T extends Message, V extends Message> implements IModule<T, V> {
00008
00009 @Override
00010 public void load(T stateData) {
00011
00012
00013 }
00014
00015 @Override
00016 public void callbackCmdAction(V message, T stateData) throws IOException,
00017 InterruptedException {
00018
00019
00020 }
00021
00022 }