Revision: | 31 |
Committed: | 2004-07-20T00:11:56-07:00 (20 years, 11 months ago) by douglas |
File size: | 365 byte(s) |
Log Message: | Ooh, pretty colors, and hourly updates, maybe. |
# | Content |
---|---|
1 | // Zoe AIM Away Message RSS Feed Generator |
2 | // |
3 | // Seth King and Douglas Thrift |
4 | // |
5 | // $Id$ |
6 | |
7 | #include "Stamp.hpp" |
8 | |
9 | Stamp::Stamp(const ext::String& when) |
10 | { |
11 | strptime(when.NullTerminate(), "%F %T", &stamp); |
12 | |
13 | this->when = timegm(&stamp); |
14 | } |
15 | |
16 | Stamp::operator ext::String() const |
17 | { |
18 | char when[30]; |
19 | |
20 | std::strftime(when, 30, "%a, %d %b %Y %T GMT", &stamp); |
21 | |
22 | return when; |
23 | } |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Id |