summaryrefslogtreecommitdiff
path: root/include/Domain.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Domain.h')
-rw-r--r--include/Domain.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/Domain.h b/include/Domain.h
index 964b33c..2c7d97c 100644
--- a/include/Domain.h
+++ b/include/Domain.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Domain.h,v 1.3 2007-05-30 11:57:08 pixel Exp $ */
+/* $Id: Domain.h,v 1.4 2007-06-19 21:31:51 pixel Exp $ */
#ifndef __DOMAIN_H__
#define __DOMAIN_H__
@@ -32,6 +32,9 @@ class Domain : public Base {
static Domain * find_domain(const String & url);
void OnTop();
virtual void Do(const HttpRequest &, HttpResponse *) throw (GeneralException) = 0;
+ static Domain * First();
+ Domain * Next();
+ String GetPattern();
private:
Domain * find_domain_r(const String & url);
static Domain * head;