diff --git a/include/core/index.h b/include/core/index.h index 20754977..6fb2138a 100644 --- a/include/core/index.h +++ b/include/core/index.h @@ -16,8 +16,10 @@ * integer identifiers. This lets us use a Database as an inverted index. */ class IndexEntry : public DatabaseEntry { -public: +private: std::string _key; /**< The term stored by this IndexEntry. */ + +public: std::set _values; /**< Integers representing strings that contain this term. */