about summary refs log tree commit diff
path: root/src/pathlocks.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/pathlocks.hh')
-rw-r--r--src/pathlocks.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/pathlocks.hh b/src/pathlocks.hh
new file mode 100644
index 0000000000..ae3a37cdb2
--- /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 */