
/* a message contains the command and two possible arguments,
 * all the values are send as ints */
interface CalculatorCommands {
    final static int ADD = 1;
    final static int MULT = 2;
    final static int SUBTRACT = 3;
    final static int DIVIDE = 4;
    final static int EXIT = 5;
}
