Changeset 29 for trunk/lib/File.cc
- Timestamp:
- Jan 9, 2006, 10:35:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/File.cc
r23 r29 90 90 void File::print(const std::string& path) const 91 91 { 92 std::string output(path + name()+ ".html");92 std::string output(path + output_name_ + ".html"); 93 93 std::ofstream os(output.c_str()); 94 94 print_header(os); … … 101 101 } 102 102 103 void File::print_link(std::ostream& os) const104 {105 os << "<a href=\"" << name() << ".html\">" << name() << "</a>";106 }107 108 103 }} // end of namespace svnstat and namespace theplu
Note: See TracChangeset
for help on using the changeset viewer.