00001 namespace JLibDiff 00002 { 00003 using System; 00004 00005 public interface HunkVisitable 00006 { 00007 void accept(HunkVisitor visitor); 00008 } 00009 00010 }