xtd 0.2.0
Loading...
Searching...
No Matches
__date_time_formatter.hpp
Go to the documentation of this file.
1
3#pragma once
5#if !defined(__XTD_CORE_INTERNAL__)
6#error "Do not include this file: Internal use only"
7#endif
9
10#include "../uint32.hpp"
11#include <ctime>
12#include <string>
13
15// These four following methods are implemented in src/xtd/date_time.cpp file.
16std::string __date_time_formatter(std::string fmt, const std::tm& time, xtd::uint32 nanoseconds, const std::locale& loc);
17std::wstring __date_time_formatter(std::wstring fmt, const std::tm& time, xtd::uint32 nanoseconds, const std::locale& loc);
18std::string __date_time_formatter(const std::string& fmt, time_t time, xtd::uint32 nanoseconds, const std::locale& loc);
19std::wstring __date_time_formatter(const std::wstring& fmt, time_t time, xtd::uint32 nanoseconds, const std::locale& loc);
std::uint32_t uint32
Represents a 32-bit unsigned integer.
Definition uint32.hpp:23
Contains xtd::uint32 type.