Example #1
0
 /// <summary>
 /// Sets the currently actve table to the table t.
 /// </summary>
 /// <param name="t"></param>
 public void setCurrentTable(Table t)
 {
     currentTable = t;
 }
Example #2
0
 /// <summary>
 /// Creates the TableManager class. Initializes the table manager with 0 elements.
 /// </summary>
 public TableManager()
 {
     tables = new List<Table>();
     currentTable = null;
 }