#ifndef _PERMISSIONTABLE_H
#define _PERMISSIONTABLE_H
static char PermissionTable_h_id[] = "$Header: /usr/tiburon/unix/gui/tmacs/RCS/PermissionTable.h,v 1.2 1997/03/20 12:36:20 oreilly Exp $";

/*
$Log: PermissionTable.h,v $
Revision 1.2  1997/03/20 12:36:20  oreilly
*** empty log message ***

 * Revision 1.1  96/10/28  09:13:55  09:13:55  oreilly (Thomas C. O'Reilly)
 * Initial revision
 * 
*/


class PermissionTable 
{
  public:
  
  PermissionTable();
  ~PermissionTable();
  
  // Reset read iterator, set "reading" flag
  void startRead();

  // Read next row
  int readNext(PermissionRow *);

  // Write a row
  int write(PermissionRow *);
  
  // Determine if table has been updated
  MBool checkForUpdate();

};



#endif
