summaryrefslogtreecommitdiff
path: root/src/modules/processor/robotstxt/RobotsTxtProcessor.hpp
blob: a274f2b4ad62818da6b27046aa4568f6da181b1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __ROBOTS_TXT_PROCESSOR_H
#define __ROBOTS_TXT_PROCESSOR_H

#include "Processor.hpp"
#include "ModuleRegistry.hpp"

class RobotsTxtProcessor : public Processor {
	public:
		RobotsTxtProcessor( );
		virtual ~RobotsTxtProcessor( );
		virtual void process( RewindInputStream *s );
};

DECLARE_MODULE( Processor )

#endif