FIX: missing include files due to newer compilers

このコミットが含まれているのは:
ps 2014-06-28 16:01:41 +00:00
コミット df573130df
5個のファイルの変更7行の追加0行の削除

ファイルの表示

@ -19,6 +19,8 @@
*/
#include "Configfile.h"
#include <unistd.h>
extern LOGGER_CLASS hermes_log;
/**

ファイルの表示

@ -19,6 +19,7 @@
*/
#include "Database.h"
#include <unistd.h>
extern LOGGER_CLASS hermes_log;
void Database::setDatabaseFile(string p_dbfile)

ファイルの表示

@ -22,6 +22,7 @@
#include "hermes.h"
#include <stdlib.h>
#include <iostream>
#include <string>
#include <sqlite3.h>

ファイルの表示

@ -18,6 +18,7 @@
* @author Juan José Gutiérrez de Quevedo <juanjo@gutierrezdequevedo.com>
*/
#include "Socket.h"
#include <unistd.h>
int Socket::created_sockets=0;

ファイルの表示

@ -19,6 +19,8 @@
*/
#include "Utils.h"
#include <unistd.h>
extern Configfile cfg;
extern LOGGER_CLASS hermes_log;