/* Filename:  LstTable.h

   Programmer:  Br. David Carlson

   Date:  October 7, 1997

   Modified:  July 31, 1998.

   This is the header file to accompany LstTable.cpp.  They provide the
   LstTableClass shown below which is a subclass of RamTableBaseClass.
*/

#include "table.h"
#include "list.h"


class LstTableClass: public RamTableBaseClass
   {
   public:
      bool Insert(const ItemType & Item);
      bool Retrieve(KeyFieldType SearchKey, ItemType & Item);
      bool Empty(void) const;
   private:
      ListClass List;   // an embedded List object
   };


