Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

DocumentCount.hpp

Go to the documentation of this file.
00001 
00002 //
00003 // DocumentCount
00004 // 
00005 // 24 September 2004 -- tds
00006 //
00007 
00008 #ifndef INDRI_DOCUMENTCOUNT_HPP
00009 #define INDRI_DOCUMENTCOUNT_HPP
00010 
00011 struct DocumentCount {
00012   DocumentCount() {}
00013 
00014   DocumentCount( int document, int count ) {
00015     this->document = document;
00016     this->count = count;
00017   }
00018 
00019   int document;
00020   int count;
00021 };
00022 
00023 struct DocumentContextCount {
00024   DocumentContextCount( int document, int count, int contextSize ) {
00025     this->document = document;
00026     this->count = count;
00027     this->contextSize = contextSize;
00028   }
00029 
00030   int document;
00031   int count;
00032   int contextSize;
00033 };
00034 
00035 #endif // INDRI_DOCUMENTCOUNT_HPP

Generated on Wed Nov 3 12:58:54 2004 for Lemur Toolkit by doxygen1.2.18