main
1namespace jive
2{
3  public interface Visitable<out T>
4  {
5    void accept(Visitor<T> visitor);
6  }
7}