Do the default argument stuff in python

--HG--
extra : convert_revision : 235f85e611a669401c6ddfbdf14244e80eb55888
This commit is contained in:
Nathan Binkert
2007-03-03 07:45:55 -08:00
parent ffe6bebb05
commit 53f5fda5de
4 changed files with 55 additions and 12 deletions

View File

@@ -42,9 +42,9 @@
namespace Stats {
void initSimStats();
void initText(const std::string &filename, bool desc=true, bool compat=true);
void initMySQL(std::string host, std::string database, std::string user = "",
std::string passwd = "", std::string name = "test",
std::string sample = "0", std::string project = "test");
void initMySQL(std::string host, std::string database, std::string user,
std::string passwd, std::string project, std::string name,
std::string sample);
void StatEvent(bool dump, bool reset, Tick when = curTick, Tick repeat = 0);