public HObject(HFile theFile, String theName, String thePath, long[] oid) { this.fileFormat = theFile; this.oid = oid; //... this.name = theName; this.path = thePath; }
public H4Vgroup(HFile theFile, String name, String path, HGroup parent, long[] oid) : base(theFile, name, path, parent) { }
public HGroup(HFile theFile, String name, String path, HGroup parent, long[] oid) : base(theFile, name, path, oid) { this.parent = parent; }
public HGroup(HFile theFile, String name, String path, HGroup parent) : this(theFile, name, path, parent, null) { }
/// <summary> /// /// </summary> /// <param name="theFile"></param> /// <param name="theName"></param> /// <param name="thePath"></param> /// <param name="oid">oid中第一个是ref,第二个是tag</param> public H4Vdata(HFile theFile, string theName, string thePath, long[] oid) : base(theFile, theName, thePath, oid) { }
public H4File(HFile theFile, String theName, String thePath, long[] oid) : base(theFile, theName, thePath, oid) { }