package org.globus.progtutorial.services.core.core_sd.impl;

import java.rmi.RemoteException;

public interface MathIF
{
    public void add(int a) throws RemoteException;

    public void subtract(int a) throws RemoteException;

    public int getValue() throws RemoteException;
}