Switch to side-by-side view

--- a/src/rcldb/stoplist.h
+++ b/src/rcldb/stoplist.h
@@ -4,8 +4,6 @@
 
 #include <set>
 #include <string>
-
-#include "textsplit.h"
 
 #ifndef NO_NAMESPACES
 using std::set;
@@ -14,7 +12,7 @@
 {
 #endif
 
-class StopList : public TextSplitCB {
+class StopList {
 public:
     StopList() : m_hasStops(false) {}
     StopList(const string &filename) {setFile(filename);}
@@ -23,7 +21,6 @@
     bool setFile(const string &filename);
     bool isStop(const string &term) const;
     bool hasStops() const {return m_hasStops;}
-    virtual bool takeword(const string& term, int pos, int bts, int bte); 
 
 private:
     bool m_hasStops;