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