diff options
author | Patrick Simianer <p@simianer.de> | 2011-09-24 23:46:49 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2011-09-24 23:46:49 +0200 |
commit | 521e8c49ad529f17f63eca1726ba8e2f564ac290 (patch) | |
tree | c424d8a4aa1ffa9c3ef74cf6b7f1ab91ce8f948e /dtrain/test/wc_pipes/wordcount.hh | |
parent | c021d22e98844f1408b8ffb30f3c8e9a3c671899 (diff) |
cleaning up
Diffstat (limited to 'dtrain/test/wc_pipes/wordcount.hh')
-rw-r--r-- | dtrain/test/wc_pipes/wordcount.hh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dtrain/test/wc_pipes/wordcount.hh b/dtrain/test/wc_pipes/wordcount.hh deleted file mode 100644 index c8fc8a29..00000000 --- a/dtrain/test/wc_pipes/wordcount.hh +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef __WORDCOUNT_HH__ -#define __WORDCOUNT_HH__ - - -#include <iostream> -#include <string> - -#include "hadoop/Pipes.hh" -#include "hadoop/TemplateFactory.hh" - -#include <boost/algorithm/string.hpp> -#include <boost/tokenizer.hpp> -#include <boost/lexical_cast.hpp> - -using namespace std; - - -class WordcountMapper : public HadoopPipes::Mapper -{ - public: - WordcountMapper( const HadoopPipes::TaskContext & ) {}; - void map( HadoopPipes::MapContext &context ); -}; - -class WordcountReducer : public HadoopPipes::Reducer -{ - public: - WordcountReducer( const HadoopPipes::TaskContext & ) {}; - void reduce( HadoopPipes::ReduceContext & context ); -}; - - -#endif - |