- Timestamp:
- Jan 13, 2006, 8:06:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Node.cc
r29 r47 8 8 #include <iostream> 9 9 #include <sstream> 10 #include <time.h> 10 11 11 12 namespace theplu{ … … 30 31 void Node::print_footer(std::ostream& os) const 31 32 { 32 os << "</body>\n" 33 time_t rawtime; 34 struct tm * timeinfo; 35 time ( &rawtime ); 36 timeinfo = localtime ( &rawtime ); 37 os << "<p><font size=1>Generated on " 38 << asctime (timeinfo) 39 << "by svnstat</font></p></body>\n" 33 40 << "</html>"; 34 41 }
Note: See TracChangeset
for help on using the changeset viewer.