summaryrefslogtreecommitdiffstats
path: root/debian/htdig/htdig-3.2.0b6/htsearch/Template.h
diff options
context:
space:
mode:
Diffstat (limited to 'debian/htdig/htdig-3.2.0b6/htsearch/Template.h')
-rw-r--r--debian/htdig/htdig-3.2.0b6/htsearch/Template.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/debian/htdig/htdig-3.2.0b6/htsearch/Template.h b/debian/htdig/htdig-3.2.0b6/htsearch/Template.h
new file mode 100644
index 00000000..5a7e6af3
--- /dev/null
+++ b/debian/htdig/htdig-3.2.0b6/htsearch/Template.h
@@ -0,0 +1,54 @@
+//
+// 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
+
+