summaryrefslogtreecommitdiff
path: root/shared/checkExist.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/checkExist.h')
-rw-r--r--shared/checkExist.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/shared/checkExist.h b/shared/checkExist.h
deleted file mode 100644
index bae5580c..00000000
--- a/shared/checkExist.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef CHECKEXIST_H_INCLUDED
-#define CHECKEXIST_H_INCLUDED
-
-#include "zstring.h"
-
-namespace Utility
-{
-enum ResultExist
-{
- EXISTING_TRUE,
- EXISTING_FALSE,
- EXISTING_TIMEOUT
-};
-
-ResultExist fileExists(const Zstring& filename, size_t timeout); //timeout in ms
-ResultExist dirExists( const Zstring& dirname, size_t timeout); //timeout in ms
-}
-
-#endif // CHECKEXIST_H_INCLUDED
bgstack15