/*************************************************
 * Author: 	Evelyn Lai-Tee Cheok
 *			Department of Electrical Engineering
 *			Center for Telecommunications Research
 *			Schapiro Research Building
 *			Columbia University
 *
 * Email: 	laitee@ctr.columbia.edu
 *
 **************************************************/
import java.lang.*;

/** Class to define the data type for Whiteboard and Chat Tool **/
public final class DataType {
	public final static byte ChatToolDataType = (byte)0;
	public final static byte WBDataType = (byte)1;
}
