Add missing #include to src/main/torrentclient.h.
[tairent.git] / src / httptrackerclient / httptrackerclientmodule.h
blob28d1de9e405d82a7b5f45fc74d48a5d7f66ee08d
1 /***************************************************************************
2 * *
3 * Copyright (C) 2006-2007 David Brodsky *
4 * *
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. *
9 * *
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. *
14 * *
15 ***************************************************************************/
17 #ifndef _httptrackerclient_httptrackerclientmodule_h
18 #define _httptrackerclient_httptrackerclientmodule_h
20 #include <tairon/core/module.h>
22 namespace Tairent
25 namespace TrackerClient
28 class HTTPTrackerClientFactory;
30 /** \brief Module that provides tracker client factory for http protocol.
32 class HTTPTrackerClientModule : public Tairon::Core::Module
34 public:
35 /** Creates new factory and registers it.
37 HTTPTrackerClientModule();
39 /** Unregisters the factory and destroys it.
41 virtual ~HTTPTrackerClientModule();
43 private:
44 /** Tracker client factory
46 HTTPTrackerClientFactory *factory;
49 }; // namespace Main
51 }; // namespace Tairent
53 #endif
55 // vim: ai sw=4 ts=4 noet fdm=marker