RiverRat  - An MIT iCampus project http://web.mit.edu/riverrat/

Main Page | Software Documentation | Hardware Documentation | People | Contact | Wiki

Main Page | Class Hierarchy | Class List | File List | Class Members

LiveServer.java

00001 package riverrat;
00002 
00003 import java.io.*;
00004 
00008 public class LiveServer extends BasicServer {
00010         protected InputStream radioInputStream = null;
00011         
00013         protected Race therace = null;
00014         
00019         public LiveServer(Race newrace) {
00020                 super();
00021                 therace = newrace;
00022         }
00023         
00029         public LiveServer(Race newrace, int newport) {
00030                 super(newport);
00031                 therace = newrace;
00032         }
00033         
00034         
00035         public static void main(String args[]) {
00036         }
00037 }
 

Brought to you by the RiverRat team.