public InputInfo(string content, int pid, Type ial)
 {
     this.content = content;
     this.pid     = pid;
     this.alg     = ial;
     this.id      = CacheIndex.GetIndex();
 }
 public InputInfo(string content)
 {
     this.pid     = 0;
     this.id      = CacheIndex.GetIndex();
     this.content = content;
 }