public GffDocument()
        {
            var gb = new GffBase();

            _wr = new GffWriter(gb);
            _rd = new GffReader(gb);
        }
Beispiel #2
0
 public GffWriter(GffBase gbase)
 {
     _gb = gbase;
 }
Beispiel #3
0
 public GffReader(GffBase gbase)
 {
     _gb  = gbase;
     _fac = new GffFactory(_gb);
 }
Beispiel #4
0
 public GffFactory(GffBase gbase)
 {
     _gbase = gbase;
 }