started system utils module
[libasyncio] / utils / asyncio_system_tools.hpp
1 /**
2  * @file
3  * @brief some functions to wrap some system functions
4  *
5  * @author Reinhard Pfau \<Reinhard.Pfau@gmx.de\>
6  * @copyright &copy; Copyright 2009 by Intra2net AG
7  * @license LGPL
8  * @contact opensource@intra2net.com
9  *
10  */
11
12
13 #ifndef _ASYNCIO_SYSTEM_TOOLS_HPP_
14 #define _ASYNCIO_SYSTEM_TOOLS_HPP_
15
16 #include <string>
17
18
19 namespace AsyncIo
20 {
21 namespace Utils
22 {
23
24   bool unlink( const std::string& path );
25
26 } // end of namespace Utils
27 }// end of namespace AsyncIo
28
29
30 #endif