// $Id$ /** * @file Runnable.idl * * @author Don Busch */ #ifndef RUNNABLE_IDL #define RUNNABLE_IDL interface Runnable { void start(); void stop(); }; #endif