#ifndef HASHLIN_HPP
#define HASHLIN_HPP

#include <vector>

using namespace std;

class HashLin {
   private: 
      vector<string> hashTable;

      // include prototype for hash method

   public:
      // constructor

      // insert method

      // print method
};

#endif
