summaryrefslogtreecommitdiff
path: root/lib/Visitable.cs
blob: 76e8f2498e5eeaaa7e942346ae6c35c145e8c626 (plain)
1
2
3
4
5
6
7
namespace jive
{
  public interface Visitable<out T>
  {
    void accept(Visitor<T> visitor);
  }
}