1 /***************************************************************************
3 * Copyright (C) 2006-2007 David Brodsky *
5 * This program is free software; you can redistribute it and/or *
6 * modify it under the terms of the GNU General Public License as *
7 * published by the Free Software Foundation and appearing *
8 * in the file LICENSE.GPL included in the packaging of this file. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
13 * General Public License for more details. *
15 ***************************************************************************/
17 #ifndef _httptrackerclient_httptrackerclientmodule_h
18 #define _httptrackerclient_httptrackerclientmodule_h
20 #include <tairon/core/module.h>
25 namespace TrackerClient
28 class HTTPTrackerClientFactory
;
30 /** \brief Module that provides tracker client factory for http protocol.
32 class HTTPTrackerClientModule
: public Tairon::Core::Module
35 /** Creates new factory and registers it.
37 HTTPTrackerClientModule();
39 /** Unregisters the factory and destroys it.
41 virtual ~HTTPTrackerClientModule();
44 /** Tracker client factory
46 HTTPTrackerClientFactory
*factory
;
51 }; // namespace Tairent
55 // vim: ai sw=4 ts=4 noet fdm=marker