#ifndef HASHPERFECT_HPP
#define HASHPERFECT_HPP

#include <vector>
#include "HashLin.hpp"

using namespace std;


class HashPerfect {
   private: 
      HashLin *hashTable [10];  // array of pointers
      unsigned size;

      int hash (string);

   public:
      // add constructor

      // add insert method

      // add print method
};

#endif
