Add missing #include to src/main/torrentclient.h.
[tairent.git] / src / httptrackerclient / httptrackerclientmodule.cpp
blobb6949c9dc489c84ad1c5151843e8cf60cc139522
1 /***************************************************************************
2 * *
3 * Copyright (C) 2006 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 #include "httptrackerclientmodule.h"
19 #include "factory.h"
21 namespace Tairent
24 namespace TrackerClient
27 /* {{{ HTTPTrackerClientModule::HTTPTrackerClientModule() */
28 HTTPTrackerClientModule::HTTPTrackerClientModule() : Tairon::Core::Module()
30 factory = new HTTPTrackerClientFactory();
32 /* }}} */
34 /* {{{ HTTPTrackerClientModule::~HTTPTrackerClientModule() */
35 HTTPTrackerClientModule::~HTTPTrackerClientModule()
37 delete factory;
39 /* }}} */
41 }; // namespace TrackerClient
43 }; // namespace Tairent
45 EXPORT_MODULE(httptrackerclient, Tairent::TrackerClient::HTTPTrackerClientModule)
47 // vim: ai sw=4 ts=4 noet fdm=marker