/* $Id: scan.h 5149 2010-03-24 23:37:18Z abehm $ Copyright (C) 2010 by The Regents of the University of California Redistribution of this file is permitted under the terms of the BSD license. Date: 03/19/2007 Author: Rares Vernica */ #ifndef _scan_h_ #define _scan_h_ #include #include #include #include "appsearch.h" using namespace std; class Scan: public AppSearch { private: unsigned editdist; const vector *data; public: Scan(const unsigned editdist, const vector *data): editdist(editdist), data(data) {} void build() {} void search(const string &query, const unsigned editdist, vector &results); void saveIndex(const string &filename) const { cerr << "Scan::saveIndex Not Implemented" << endl; } }; #endif