]> git.sesse.net Git - freerainbowtables/blobdiff - Client Applications/rcracki/tmp/MemoryPool.h
cleanup
[freerainbowtables] / Client Applications / rcracki / tmp / MemoryPool.h
diff --git a/Client Applications/rcracki/tmp/MemoryPool.h b/Client Applications/rcracki/tmp/MemoryPool.h
deleted file mode 100644 (file)
index 9f2ea4e..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-   RainbowCrack - a general propose implementation of Philippe Oechslin's faster time-memory trade-off technique.
-
-   Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>
-*/
-
-#ifndef _MEMORYPOOL_H
-#define _MEMORYPOOL_H
-
-class CMemoryPool  
-{
-public:
-       CMemoryPool();
-       virtual ~CMemoryPool();
-
-private:
-       unsigned char* m_pMem;
-       unsigned int m_nMemSize;
-
-       unsigned int m_nMemMax;
-
-public:
-       unsigned char* Allocate(unsigned int nFileLen, unsigned int& nAllocatedSize);
-};
-
-#endif