summaryrefslogtreecommitdiff
path: root/shared/resolve_path.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/resolve_path.h')
-rw-r--r--shared/resolve_path.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/shared/resolve_path.h b/shared/resolve_path.h
new file mode 100644
index 00000000..0bd4b0d2
--- /dev/null
+++ b/shared/resolve_path.h
@@ -0,0 +1,19 @@
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
+// **************************************************************************
+//
+#ifndef RESOLVE_PATH_H_INCLUDED
+#define RESOLVE_PATH_H_INCLUDED
+
+#include "zstring.h"
+
+
+namespace ffs3
+{
+Zstring getFormattedDirectoryName(const Zstring& dirname);
+}
+
+
+#endif // RESOLVE_PATH_H_INCLUDED
bgstack15