namespace VisitorLib; public interface IShapeVisitor { void VisitRectangle(Rectangle rectangle); void VisitCircle(Circle rectangle); }