classes moved to separate dirs

This commit is contained in:
2022-06-02 21:16:22 +03:00
parent 358ec7d262
commit 6c0b23f256
7 changed files with 32 additions and 50 deletions

View File

@@ -1,31 +0,0 @@
#include "Hashtable2.hpp"
template<typename TKey, typename TValue>
Hashtable2<TKey, TValue>::Hashtable2() {
}
template<typename TKey, typename TValue>
TValue Hashtable2<TKey, TValue>::Get(TKey key) {
}
template<typename TKey, typename TValue>
TValue Hashtable2<TKey, TValue>::GetPtr(TKey key) {
}
template<typename TKey, typename TValue>
bool Hashtable2<TKey, TValue>::AddOrSet(TKey key, TValue) {
}
template<typename TKey, typename TValue>
bool Hashtable2<TKey, TValue>::Remove(TKey) {
}
template<typename TKey, typename TValue>
Hashtable2<TKey, TValue>::~Hashtable2() {
}

View File

@@ -1,24 +0,0 @@
//
//
//
#pragma once
#include "hash.h"
#include "../Autoarr/Autoarr2.hpp"
template <typename TKey, typename TValue>
class Hashtable2{
uint8 hein;
public:
Autoarr2<TKey>* Keys;
Autoarr2<TValue>* Values;
Hashtable2();
TValue Get(TKey key);
TValue GetPtr(TKey key);
bool AddOrSet(TKey key, TValue);
bool Remove(TKey);
~Hashtable2();
};