00001 /*========================================================================== 00002 * Copyright (c) 2001 Carnegie Mellon University. All Rights Reserved. 00003 * 00004 * Use of the Lemur Toolkit for Language Modeling and Information Retrieval 00005 * is subject to the terms of the software license set forth in the LICENSE 00006 * file included with this software, and also available at 00007 * http://www.cs.cmu.edu/~lemur/license.html 00008 * 00009 *========================================================================== 00010 */ 00011 00012 00013 #ifndef _INVFPINDEX_HPP 00014 #define _INVFPINDEX_HPP 00015 00017 #include "common_headers.hpp" 00018 #include "InvIndex.hpp" 00019 #include "InvFPDocList.hpp" 00020 #include "InvFPTermList.hpp" 00021 #include "InvFPTypes.hpp" 00022 00023 00024 class InvFPIndex : public InvIndex { 00025 public: 00026 InvFPIndex(); 00027 InvFPIndex(const char* indexName); 00028 ~InvFPIndex(); 00029 00031 00032 00033 DocInfoList* docInfoList(int termID); 00034 00036 TermInfoList* termInfoList(int docID); 00037 00039 TermInfoList* termInfoListSeq(int docID); 00040 00042 private: 00043 00044 }; 00045 00046 #endif