コード例 #1
0
 public HObject(HFile theFile, String theName, String thePath, long[] oid)
 {
     this.fileFormat = theFile;
     this.oid        = oid;
     //...
     this.name = theName;
     this.path = thePath;
 }
コード例 #2
0
 public H4Vgroup(HFile theFile, String name, String path, HGroup parent, long[] oid)
     : base(theFile, name, path, parent)
 {
 }
コード例 #3
0
ファイル: HGroup.cs プロジェクト: configare/hispeed
 public HGroup(HFile theFile, String name, String path, HGroup parent, long[] oid)
     : base(theFile, name, path, oid)
 {
     this.parent = parent;
 }
コード例 #4
0
ファイル: HGroup.cs プロジェクト: configare/hispeed
 public HGroup(HFile theFile, String name, String path, HGroup parent)
     : this(theFile, name, path, parent, null)
 {
 }
コード例 #5
0
 /// <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)
 {
 }
コード例 #6
0
 public H4File(HFile theFile, String theName, String thePath, long[] oid)
     : base(theFile, theName, thePath, oid)
 {
 }