From: Reinhard Pfau Date: Sun, 12 Apr 2009 22:25:07 +0000 (+0200) Subject: updated to use stuff from local utils X-Git-Tag: v0.3~46 X-Git-Url: http://developer.intra2net.com/git/?p=libasyncio;a=commitdiff_plain;h=ce4ab835621fb202fd4b1711b79f7793e83aca79 updated to use stuff from local utils --- diff --git a/asyncio/async_process.cpp b/asyncio/async_process.cpp index 4ce8a3d..5169b5c 100644 --- a/asyncio/async_process.cpp +++ b/asyncio/async_process.cpp @@ -37,7 +37,7 @@ on this file might be covered by the GNU General Public License. #include #include -#include +//#include #ifdef NOISEDEBUG @@ -395,7 +395,7 @@ bool ProcessImplementation::setWorkDir(const std::string& workdir) } if (not workdir.empty()) { - I2n::Stat stat(workdir); + Utils::FileStat stat(workdir); if (not stat or not stat.is_directory()) { return false; diff --git a/asyncio/async_process.hpp b/asyncio/async_process.hpp index 29b5346..b0bdf0f 100644 --- a/asyncio/async_process.hpp +++ b/asyncio/async_process.hpp @@ -32,8 +32,8 @@ on this file might be covered by the GNU General Public License. #include -#include -#include +#include +#include #include "async_io.hpp"