From 43c90fc4001b6a8b509e5312a80054dca6bd956f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 11 May 2015 13:33:34 +0300 Subject: add libnt_path_converter --- .../include/libnt_path_converter/all.hpp | 11 ++++++++++ .../include/libnt_path_converter/device.hpp | 24 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 utils/libnt_path_converter/include/libnt_path_converter/all.hpp create mode 100644 utils/libnt_path_converter/include/libnt_path_converter/device.hpp (limited to 'utils/libnt_path_converter/include') diff --git a/utils/libnt_path_converter/include/libnt_path_converter/all.hpp b/utils/libnt_path_converter/include/libnt_path_converter/all.hpp new file mode 100644 index 0000000..899fc3d --- /dev/null +++ b/utils/libnt_path_converter/include/libnt_path_converter/all.hpp @@ -0,0 +1,11 @@ +/** + * \file + * \author Egor Tensin + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#pragma once + +#include "device.hpp" diff --git a/utils/libnt_path_converter/include/libnt_path_converter/device.hpp b/utils/libnt_path_converter/include/libnt_path_converter/device.hpp new file mode 100644 index 0000000..783bf73 --- /dev/null +++ b/utils/libnt_path_converter/include/libnt_path_converter/device.hpp @@ -0,0 +1,24 @@ +/** + * \file + * \author Egor Tensin + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#pragma once + +#include "libservice/interface.hpp" + +#include + +namespace libnt_path_converter +{ + class Device : libservice::Device + { + public: + Device(); + + std::wstring convert_nt_path(const std::wstring&); + }; +} -- cgit v1.2.3