Skip to content
Snippets Groups Projects
Select Git revision
  • 8a53cfb0d5e6f2fc28cf51e237256fc61c367c89
  • main default protected
  • rosification
  • refactoring
  • pp
  • mpc
  • realtimelogplotter
  • alv
  • gitlab_ci_podman
  • restructuring
  • viz_fix
11 results

control_loop_manager.py

Blame
  • TestObject.java 398 B
    package labcommTCPtest.server;
    
    /**
     * The service object to be accessed remotely via a LabComm channel
     * 
     */
    public class TestObject {
    
    	/**
    	 * A test method. The matching LabComm description is in test.lc
    	 * 
    	 * @param x
    	 * @param y
    	 * @param t
    	 * @param d
    	 */
    	public void foo(int x, int y, long t, double d) {
    		System.out.format("TestObject.foo(%d, %d, %d, %f)\n", x, y, t, d);
    	}
    
    }