ThreadPool added into libtransport
This commit is contained in:
parent
fc61c0685c
commit
b3f59f9bb6
14 changed files with 13 additions and 13 deletions
|
@ -1,7 +1,7 @@
|
|||
#ifndef CREATE_FRIEND
|
||||
#define CREATE_FRIEND
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef DESTROY_FRIEND
|
||||
#define DESTROY_FRIEND
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef DIRECT_MESSAGE
|
||||
#define DIRECT_MESSAGE
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef FRIENDS_H
|
||||
#define FRIENDS_H
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef HELPMESSAGE_H
|
||||
#define HELPMESSAGE_H
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "transport/networkplugin.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef OAUTH_FLOW
|
||||
#define OAUTH_FLOW
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "../TwitterPlugin.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef PIN_EXCHANGE
|
||||
#define PIN_EXCHANGE
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "../TwitterPlugin.h"
|
||||
#include "transport/networkplugin.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef PROFILEIMAGE_H
|
||||
#define PROFILEIMAGE_H
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "transport/logging.h"
|
||||
#include "transport/config.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef RETWEET_H
|
||||
#define RETWEET_H
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "transport/networkplugin.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef STATUS_UPDATE
|
||||
#define STATUS_UPDATE
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "transport/networkplugin.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef TIMELINE_H
|
||||
#define TIMELINE_H
|
||||
|
||||
#include "../ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
#include "../libtwitcurl/twitcurl.h"
|
||||
#include "../TwitterResponseParser.h"
|
||||
#include "transport/logging.h"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "transport/mysqlbackend.h"
|
||||
#include "transport/pqxxbackend.h"
|
||||
#include "transport/storagebackend.h"
|
||||
#include "transport/threadpool.h"
|
||||
|
||||
#include "Swiften/Swiften.h"
|
||||
#include "unistd.h"
|
||||
|
@ -31,7 +32,6 @@
|
|||
#include <set>
|
||||
#include <cstdio>
|
||||
|
||||
#include "ThreadPool.h"
|
||||
#include "Swiften/StringCodecs/SHA1.h"
|
||||
|
||||
using namespace boost::filesystem;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ThreadPool.h"
|
||||
#include "transport/threadpool.h"
|
||||
DEFINE_LOGGER(logger, "ThreadPool")
|
||||
boost::signals2::signal< void (Thread*, int) > onWorkCompleted;
|
||||
|
Loading…
Add table
Reference in a new issue