view dwt/dwthelper/Runnable.d @ 0:5406a8f6526d

Add initial files
author John Reimer <terminal.node@gmail.com
date Sun, 20 Jan 2008 21:50:55 -0800
parents
children cca980503056
line wrap: on
line source

/**
 * Authors: Frank Benoit <benoit@tionex.de>
 */
module dwt.dwthelper.Runnable;

public interface Runnable  {

    public abstract void run();

}