common_util
|
A simple, feature-rich modern C++ date-time class. More...
#include <cstdint>
#include <string>
#include <iostream>
#include <regex>
#include <vector>
#include <utility>
Go to the source code of this file.
Classes | |
class | cutl::datetime |
A simple, feature-rich modern C++ date-time class. More... | |
Enumerations | |
enum class | cutl::datetime_format { datetime_format_a , datetime_format_b , datetime_format_c , datetime_format_d } |
the string datetime format for parsing and formatting More... | |
Functions | |
std::ostream & | cutl::operator<< (std::ostream &os, const datetime &dt) |
Define the output stream operator for datetime object. | |
A simple, feature-rich modern C++ date-time class.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations.
|
strong |
std::ostream & cutl::operator<< | ( | std::ostream & | os, |
const datetime & | dt ) |
Define the output stream operator for datetime object.
os | the std::ostream object |
dt | the datetime object to be output |