package caltool.model.admin.user;

import mvp.Model;

/****
 *
 * Class Admin is the top-level model class in the regular-user admin package.
 * It defines the objects and operations related to accessing the user, group,
 * room, and global options databases of the Calendar Tool.
 *                                                                          <p>
 * In contrast to this user-level admin class, the <a href=
 * "caltool/model/admin/administrator/CalendarToolAdministration.html>
 * CalendarToolAdministration class is the top-level for the larger caltool
 * admin program, which runs as a separate application from the regular-user
 * application.  See its documentation for further information.
 * 
 * @author Gene Fisher (gfisher@calpoly.edu)
 * @version 1feb13
 *
 */

public class Admin extends Model {

    public Admin(mvp.View view) {
        super(view);
    }

}