cis22c-project/DisplayManager.h
2024-06-17 03:36:21 -07:00

22 lines
390 B
C++

#ifndef DISPLAY_MANAGER_H
#define DISPLAY_MANAGER_H
#include "HashTable.h"
#include "BinarySearchTree.h"
#include "CPU.h"
template<typename T>
class DisplayManager {
private:
HashTable* hashTable;
BinarySearchTree* bst;
public:
DisplayManager(HashTable* ht, BinarySearchTree* bst);
~DisplayManager();
void displayAll() const;
void displayTree() const;
};
#endif