Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

static string Impala::Application::TagsLife::Tag::formatDate ( time_t *  date  )  [inline, static]

Definition at line 70 of file Tag.h.

References Impala::MakeString().

Referenced by flickrWeekToString().

00070                                            {
00071         char *months[] = {"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
00072         tm* dateTm = localtime(date);
00073                 string txt = MakeString(months[dateTm->tm_mon]) + " " + MakeString(dateTm->tm_mday) + ", ";
00074                            txt+= MakeString(dateTm->tm_year+1900);
00075                 return txt;
00076     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:16:23 2011 for ImpalaSrc by  doxygen 1.5.1