diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-31 17:53:02 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-31 17:53:02 -0700 |
| commit | d3a54b0042041ef6cd3ee12f420c746b4e539420 (patch) | |
| tree | 6a685b671f4abcf14ee06fee51ead74835edea57 /toolsrc/include/cstring_view.h | |
| parent | 1e33e2e21362611e350b22f401f25eb50366a2bd (diff) | |
| download | vcpkg-d3a54b0042041ef6cd3ee12f420c746b4e539420.tar.gz vcpkg-d3a54b0042041ef6cd3ee12f420c746b4e539420.zip | |
Place cXstring_view in a separate header
Diffstat (limited to 'toolsrc/include/cstring_view.h')
| -rw-r--r-- | toolsrc/include/cstring_view.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/toolsrc/include/cstring_view.h b/toolsrc/include/cstring_view.h new file mode 100644 index 000000000..f516f9fec --- /dev/null +++ b/toolsrc/include/cstring_view.h @@ -0,0 +1,38 @@ +#pragma once +#include <string> + +namespace vcpkg +{ + struct cstring_view + { + cstring_view(const char* cstr) : cstr(cstr) {} + cstring_view(const std::string& str) : cstr(str.c_str()) {} + + operator const char*() const { return cstr; } + + const char* c_str() const { return cstr; } + + private: + const char* cstr; + }; + + inline const char* to_printf_arg(const cstring_view spec) { return spec.c_str(); } + + struct cwstring_view + { + cwstring_view(const wchar_t* cstr) : cstr(cstr) {} + cwstring_view(const std::wstring& str) : cstr(str.c_str()) {} + + operator const wchar_t*() const { return cstr; } + + const wchar_t* c_str() const { return cstr; } + + private: + const wchar_t* cstr; + }; + + inline const wchar_t* to_wprintf_arg(const cwstring_view spec) { return spec.c_str(); } + + static_assert(sizeof(cstring_view) == sizeof(void*), "cstring_view must be a simple wrapper around char*"); + static_assert(sizeof(cwstring_view) == sizeof(void*), "cwstring_view must be a simple wrapper around wchar_t*"); +} |
