#include "Math_s.hh"

class MathImpl : public virtual POA_Math, 
		 public virtual PortableServer::ServantBase
{
public:
    CORBA::Double add(CORBA::Double x, CORBA::Double y) {
	return x + y; 
    };
    CORBA::Double sub(CORBA::Double x, CORBA::Double y) {
	return x - y; 
    };
};
