Added support for VCSDEV and SUM format files for VCSummer

This commit is contained in:
Rich
2013-06-11 18:41:32 +00:00
parent f03615dd7d
commit 924e5c024e
6 changed files with 133 additions and 2 deletions

View File

@@ -75,6 +75,12 @@ namespace fmtxml
case "IP2.FMT":
AddIP2fmt(ref fmtdata);
break;
case "SUM.FMT":
AddSUMfmt(ref fmtdata);
break;
case "VCSDEV.FMT":
AddVCSDEVfmt(ref fmtdata);
break;
}
}
@@ -1056,6 +1062,12 @@ namespace fmtxml
case "RGE.PAG":
AddRGEPage(ref pgstyles);
break;
case "VCSDEV.PAG":
AddVCSDEVfmt(ref pgstyles);
break;
case "SUM.PAG":
AddSUMfmt(ref pgstyles);
break;
/* Under Development
case "TP.PAG":
AddTPPage(ref pgstyles);
@@ -1738,6 +1750,12 @@ namespace fmtxml
case "IP2.DOC":
AddIp2DOC(ref dcstyles);
break;
case "VCSDEV.DOC":
AddVCSDEVDOC(ref dcstyles);
break;
case "SUM.DOC":
AddSUMDOC(ref dcstyles);
break;
}
}