]> git.sesse.net Git - freerainbowtables/blobdiff - Client Applications/rcracki_mt/BaseRTReader.h
(C)
[freerainbowtables] / Client Applications / rcracki_mt / BaseRTReader.h
index b95f930fd37df55beae4ac4bb00d4edeccdb9bb0..2086d86e394da031b9b215870225b19eddd19f98 100644 (file)
@@ -2,11 +2,11 @@
  * rcracki_mt is a multithreaded implementation and fork of the original 
  * RainbowCrack
  *
- * Copyright 2010 Martin Westergaard Jørgensen <martinwj2005@gmail.com>
+ * Copyright 2010, 2011 Martin Westergaard Jørgensen <martinwj2005@gmail.com>
  * Copyright 2010 Daniël Niggebrugge <niggebrugge@fox-it.com>
- * Copyright 2010 James Nobis <frt@quelrod.net>
+ * Copyright 2010, 2011 James Nobis <frt@quelrod.net>
  *
- * This file is part of racrcki_mt.
+ * This file is part of rcracki_mt.
  *
  * rcracki_mt is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -37,9 +37,10 @@ using namespace std;
 class BaseRTReader
 {
 public:
-       virtual int ReadChains(unsigned int &numChains, RainbowChainO *pData) = 0;
-       virtual unsigned int GetChainsLeft() = 0;
+       virtual int ReadChains(uint32 &numChains, RainbowChainO *pData) = 0;
+       virtual uint32 GetChainsLeft() = 0;
        
+       virtual ~BaseRTReader()  { };
 };
 
 #endif