public void ExporterTest()
        {
            GeneralExporter <CataloguePool> exporter = new GeneralExporter <CataloguePool>("export.ld");

            Assert.IsTrue(exporter.Export(cpl));
        }
Exemple #2
0
        public bool SaveSetting(GS instance)
        {
            GeneralExporter <GS> exporter = new GeneralExporter <GS>(OutputFile, "version", VERSION);

            return(exporter.Export(instance));
        }
Exemple #3
0
        public bool SaveAs(string path)
        {
            GeneralExporter <Interpreter> ge = new GeneralExporter <Interpreter>(path);

            return(ge.Export(this, "Actions"));
        }