/* $Id: scan.h 4026 2008-10-01 00:23:25Z abehm $ Copyright (C) 2007 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