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); }
private ExporterMorph(DirectoryInfo dir, odfParser parser, odfMorphObject morphObj, bool skipUnusedProfiles) { this.parser = parser; this.morphObj = morphObj; this.skipUnusedProfiles = skipUnusedProfiles; }