#ifndef __ADD_H
#define __ADD_H

namespace wire 
{
	class Add 
  	{
  		public:
    		int add (const int x, const int y);
    
		Add();
   	 	~Add();
  	};
}

#endif //__ADD_H
