internal CompControlParaModSZ(PFSSection Section)
    {
      _pfsHandle = Section;

      for (int i = 1; i <= Section.GetSectionsNo(); i++)
      {
        PFSSection sub = Section.GetSection(i);
        switch (sub.Name)
        {
        case "CompControlParaModLMG":
          _compControlParaModLMG = new CompControlParaModLMG(sub);
          break;
        case "CompControlParaModPCG2":
          _compControlParaModPCG2 = new CompControlParaModPCG2(sub);
          break;
        case "CompControlParaModPCG4":
          _compControlParaModPCG4 = new CompControlParaModPCG4(sub);
          break;
        case "CompControlParaModSIP":
          _compControlParaModSIP = new CompControlParaModSIP(sub);
          break;
        case "CompControlParaModSOR":
          _compControlParaModSOR = new CompControlParaModSOR(sub);
          break;
          default:
            _unMappedSections.Add(sub.Name);
          break;
        }
      }
    }
Ejemplo n.º 2
0
        internal CompControlParaModSZ(PFSSection Section)
        {
            _pfsHandle = Section;

            for (int i = 1; i <= Section.GetSectionsNo(); i++)
            {
                PFSSection sub = Section.GetSection(i);
                switch (sub.Name)
                {
                case "CompControlParaModLMG":
                    _compControlParaModLMG = new CompControlParaModLMG(sub);
                    break;

                case "CompControlParaModPCG2":
                    _compControlParaModPCG2 = new CompControlParaModPCG2(sub);
                    break;

                case "CompControlParaModPCG4":
                    _compControlParaModPCG4 = new CompControlParaModPCG4(sub);
                    break;

                case "CompControlParaModSIP":
                    _compControlParaModSIP = new CompControlParaModSIP(sub);
                    break;

                case "CompControlParaModSOR":
                    _compControlParaModSOR = new CompControlParaModSOR(sub);
                    break;

                default:
                    _unMappedSections.Add(sub.Name);
                    break;
                }
            }
        }