comparison C++/modules/Date/Date.cpp @ 418:30e4a93f86c7

Pet doxygen a bit
author David Demelier <markand@malikania.fr>
date Thu, 08 Oct 2015 10:07:47 +0200
parents d5ec1174b707
children
comparison
equal deleted inserted replaced
417:865224c2191a 418:30e4a93f86c7
26 Date::Date(time_t timestamp) 26 Date::Date(time_t timestamp)
27 { 27 {
28 m_timestamp = timestamp; 28 m_timestamp = timestamp;
29 } 29 }
30 30
31 Date::~Date()
32 {
33 }
34
35 std::string Date::format(const std::string &format) 31 std::string Date::format(const std::string &format)
36 { 32 {
37 char buffer[512]; 33 char buffer[512];
38 struct tm *tm; 34 struct tm *tm;
39 35