1 /*
2    mkvmerge -- utility for splicing together matroska files
3    from component media subtypes
4 
5    Distributed under the GPL v2
6    see the file COPYING for details
7    or visit https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
8 
9    declarations date/time helper functions
10 
11    Written by Moritz Bunkus <moritz@bunkus.org>.
12 */
13 
14 #pragma once
15 
16 #include "common/common_pch.h"
17 
18 class QDateTime;
19 
20 namespace mtx::date_time {
21 
22 std::string format(QDateTime const &timestamp, std::string const &format_string);
23 std::string format_iso_8601(QDateTime const &timestamp);
24 
25 }
26