// Count Interface


import java.rmi.*;

public interface Count extends Remote {
  void set(int val) throws RemoteException;
  void reset() throws RemoteException;
  int get() throws RemoteException;
  int increment() throws RemoteException;
  void addClient(CountClientInterface client) throws RemoteException;
  void remClient(CountClientInterface client) throws RemoteException;
}