Exemple #1
0
 public static void Export(string dirPath, odfParser parser, odfMorphObject morphObj, bool skipUnusedProfiles)
 {
     DirectoryInfo dir = new DirectoryInfo(dirPath);
     ExporterMorph exporter = new ExporterMorph(dir, parser, morphObj, skipUnusedProfiles);
     exporter.Export(dir);
 }
Exemple #2
0
 private ExporterMorph(DirectoryInfo dir, odfParser parser, odfMorphObject morphObj, bool skipUnusedProfiles)
 {
     this.parser = parser;
     this.morphObj = morphObj;
     this.skipUnusedProfiles = skipUnusedProfiles;
 }