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