the type of the typedef
the key associated with the typedef
the id associated with the typedef
a callback that performs the archiving of the value as the base type of the typedef
typedef int Foo; Foo a = 3; auto archive = new XmlArchive!(); archive.archiveTypedef(Foo.stringof, "a", 0, { // archive "a" as the base type of Foo, i.e. int });
Archives a typedef.