diff options
Diffstat (limited to 'src/pathlocks.hh')
-rw-r--r-- | src/pathlocks.hh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/pathlocks.hh b/src/pathlocks.hh new file mode 100644 index 000000000000..ae3a37cdb214 --- /dev/null +++ b/src/pathlocks.hh @@ -0,0 +1,18 @@ +#ifndef __PATHLOCKS_H +#define __PATHLOCKS_H + +#include "util.hh" + + +class PathLocks +{ +private: + list<int> fds; + +public: + PathLocks(const Strings & _paths); + ~PathLocks(); +}; + + +#endif /* !__PATHLOCKS_H */ |