public void Dispose()
        {
            Input.Dispose();
            DecoderPool.Dispose();
            FilterPool.Dispose();
            Filter2.Dispose();

            DecoderQueue.Dispose();
            FilterQueue.Dispose();
            Filter2Queue.Dispose();
        }
예제 #2
0
 public FeaturePointer(string headerText, List <GenericFeature> pool, FeatureBundle parent = null) : base(parent)
 {
     this.pool       = pool;
     this.headerText = headerText;
     filterPool      = (Sheet c) => pool;
 }