You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
3 years ago
|
//
|
||
|
// Template.h
|
||
|
//
|
||
|
// Template: A template to set the display of the search results.
|
||
|
// MatchTemplate is used for every match, Start and End templates
|
||
|
// are used between the header and the first match and the
|
||
|
// last match and the footer respectively.
|
||
|
//
|
||
|
// Part of the ht://Dig package <http://www.htdig.org/>
|
||
|
// Copyright (c) 1995-2004 The ht://Dig Group
|
||
|
// For copyright details, see the file COPYING in your distribution
|
||
|
// or the GNU Library General Public License (LGPL) version 2 or later
|
||
|
// <http://www.gnu.org/copyleft/lgpl.html>
|
||
|
//
|
||
|
// $Id: Template.h,v 1.8 2004/05/28 13:15:24 lha Exp $
|
||
|
//
|
||
|
|
||
|
#ifndef _Template_h_
|
||
|
#define _Template_h_
|
||
|
|
||
|
#include "Object.h"
|
||
|
#include "htString.h"
|
||
|
|
||
|
//
|
||
|
// This class holds information about output templates.
|
||
|
//
|
||
|
class Template : public Object
|
||
|
{
|
||
|
public:
|
||
|
Template();
|
||
|
~Template();
|
||
|
|
||
|
const String& getMatchTemplate() const { return matchTemplate; }
|
||
|
const String& getStartTemplate() const { return startTemplate; }
|
||
|
const String& getEndTemplate() const { return endTemplate; }
|
||
|
|
||
|
void setMatchTemplate(const char *s) { matchTemplate = s; }
|
||
|
void setStartTemplate(const char *s) { startTemplate = s; }
|
||
|
void setEndTemplate(const char *s) { endTemplate = s; }
|
||
|
|
||
|
void createFromFile(const char *filename);
|
||
|
|
||
|
protected:
|
||
|
String matchTemplate;
|
||
|
String startTemplate;
|
||
|
String endTemplate;
|
||
|
|
||
|
private:
|
||
|
void readFile(String &, const char *) const;
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|