Changeset 244
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Directory.cc
r243 r244 171 171 os << "../../"; 172 172 if (user=="all") 173 os << stats_.plot(imagedir+"/index.png", l ocal_path(),line_type);173 os << stats_.plot(imagedir+"/index.png", line_type); 174 174 else 175 175 os << imagedir << "/index.png"; -
trunk/lib/File.cc
r235 r244 74 74 os << "../../"; 75 75 if (user=="all") 76 os << stats_.plot(imagefile, local_path(),line_type);76 os << stats_.plot(imagefile,line_type); 77 77 else 78 78 os << imagefile; -
trunk/lib/Stats.cc
r213 r244 157 157 158 158 std::string Stats::plot(const std::string& filename, 159 const std::string& title,160 159 const std::string& linetype) const 161 160 { … … 163 162 gp->command("set term png"); 164 163 gp->command("set output '"+filename+"'"); 165 gp->command("set title '"+title+"'");166 164 gp->command("set xtics nomirror"); 167 165 gp->command("set ytics nomirror"); -
trunk/lib/Stats.h
r209 r244 97 97 /// Create statistics graph. 98 98 /// 99 std::string plot(const std::string&, const std::string&, 100 const std::string&) const; 99 std::string plot(const std::string&, const std::string&) const; 101 100 102 101 ///
Note: See TracChangeset
for help on using the changeset viewer.