source: trunk/gsdl/src/recpt/phindbrowserclass.h@ 1643

Last change on this file since 1643 was 1643, checked in by paynter, 23 years ago

The phind phrase browsing interface is now a Greenstone classifier. The
user simply puts a line similar to

classify Phind -text=section:text,section:Title

in their collect.cfg and the new phind classifier object will generate
the phrase hierarchy and add the browser interface to the web page.

  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/**********************************************************************
2 *
3 * phindbrowserclass.h --
4 *
5 * Copyright (C) 2000 The New Zealand Digital Library Project
6 *
7 *
8 * A component of the Greenstone digital library software
9 * from the New Zealand Digital Library Project at the
10 * University of Waikato, New Zealand.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *********************************************************************/
27
28
29#ifndef PHINDBROWSERCLASS_H
30#define PHINDBROWSERCLASS_H
31
32#include "browserclass.h"
33
34class phindbrowserclass : public browserclass {
35protected:
36
37public:
38
39 phindbrowserclass ();
40 virtual ~phindbrowserclass ();
41
42 // returns the name that specifies the browserclass type
43 virtual text_t get_browser_name ();
44
45 void processOID (cgiargsclass &args, recptproto *collectproto,
46 ostream &logout);
47
48
49};
50
51#endif
Note: See TracBrowser for help on using the repository browser.