namespace VisitorLib; public abstract class Shape { public abstract void Accept(IShapeVisitor visitor); }