Archives a base class.
This method is used to indicate that the all following calls to archive a value should be part of the base class. This method is usually called within the callback passed to archiveObject. The archiveObject method can the mark the end of the class.
the type of the base class to archive
the key associated with the base class
the id associated with the base class
class ArchiveBase {} class Foo : ArchiveBase {} auto archive = new XmlArchive!(); archive.archiveBaseClass("ArchiveBase", "base", 0);
See Implementation
Archives a base class.
This method is used to indicate that the all following calls to archive a value should be part of the base class. This method is usually called within the callback passed to archiveObject. The archiveObject method can the mark the end of the class.