//
// THIS FILE IS COPYRIGHT 1994, 1995 BY TELENOR R&D, NORWAY
//
//                        ALL RIGHTS RESERVED.
//
// For rights granted to the public see the COPYRIGHT file
//
//
// Index.h	The main structure of the program. Conmtains a set of
//	      	all the url's, and all the words.
//
// Author:  Ken Ronny Schouten

#ifndef _INDEX_H
#define _INDEX_H

#include "UP.SplaySet.h"
#include "Dictionary.h"

class Index {
public:
    Dictionary     _entry;
    URLPTRSplaySet _url;
};

#endif /* _INDEX_H */
