Ejemplo n.º 1
0
 /// <summary> Constructor for a new Template object </summary>
 public Template()
 {
     // Set some defaults
     Notes        = String.Empty;
     Creator      = String.Empty;
     Title        = String.Empty;
     BibID        = String.Empty;
     VID          = String.Empty;
     readOnly     = false;
     allTitles    = new Dictionary <Template_Language, string>();
     DateCreated  = DateTime.Now;
     LastModified = new DateTime(1, 1, 1);
     inputs       = new Template_Page_Collection();
     constants    = new Element_Collection();
     isProject    = false;
 }
Ejemplo n.º 2
0
 /// <summary> Constructore creates a new Template_Page_Collection_Enumerator to iterate through
 /// the <see cref="Template_Page_Collection"/>. </summary>
 /// <param name="pageCollection"> <see cref="Template_Page_Collection"/> to iterate through </param>
 public Template_Page_Collection_Enumerator(Template_Page_Collection pageCollection)
 {
     pages = pageCollection;
 }