comparison mde/mergetag/iface/IDataSection.d @ 16:9cb7b9310168

Improvements to Options and Init. Revamped Options with sections and auto saving/loading. Moved some of init's functions outside the module. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 15 Mar 2008 11:56:13 +0000
parents 0047b364b6d9
children 5f90774ea1ef
comparison
equal deleted inserted replaced
15:4608be19ebe2 16:9cb7b9310168
5 * 5 *
6 * Also some base mergetag symbols have been moved here. 6 * Also some base mergetag symbols have been moved here.
7 */ 7 */
8 module mde.mergetag.iface.IDataSection; 8 module mde.mergetag.iface.IDataSection;
9 9
10 /** Typedef for data & section indexes (can be changed to ulong if necessary.) */ 10 /** Typedef for data & section indexes.
11 typedef char[] ID; 11 *
12 * Make it an alias, there doesn't appear to be any point having it as a typedef. */
13 alias char[] ID;
12 14
13 /** 15 /**
14 * Interface for data storage classes, generally called DataSections, which contain all data-tags 16 * Interface for data storage classes, generally called DataSections, which contain all data-tags
15 * loaded from a single section of a file. 17 * loaded from a single section of a file.
16 * 18 *