source: trunk/gsdl/src/recpt/htmlgen.h@ 155

Last change on this file since 155 was 155, checked in by rjmcnab, 25 years ago

Got the receptionist producing something using the statusaction.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 789 bytes
Line 
1/**********************************************************************
2 *
3 * htmlgen.h --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * PUT COPYRIGHT NOTICE HERE
7 *
8 * $Id: htmlgen.h 155 1999-02-08 01:28:04Z rjmcnab $
9 *
10 *********************************************************************/
11
12
13#ifndef HTMLGEN_H
14#define HTMLGEN_H
15
16#include "gsdlconf.h"
17#include "text_t.h"
18#include "display.h"
19
20#if defined(GSDL_USE_OBJECTSPACE)
21# include <ospace\std\iostream>
22#elif defined(GSDL_USE_IOS_H)
23# include <iostream.h>
24#else
25# include <iostream>
26#endif
27
28
29
30// highlighttext highlights query terms in text string and
31// outputs the resulting text string
32void highlighttext (text_tarray &termvars, displayclass &disp, text_t &text,
33 outconvertclass &outconvert, ostream &textout, ostream &logout);
34
35
36#endif
Note: See TracBrowser for help on using the repository browser.