dropped "c" prefix from class names

This commit is contained in:
Nick Bolton
2014-11-11 13:51:47 +00:00
parent f6c05e7635
commit e8e156f0e2
382 changed files with 7430 additions and 7423 deletions

View File

@@ -21,39 +21,39 @@
#include <syslog.h>
//
// CArchLogUnix
// ArchLogUnix
//
CArchLogUnix::CArchLogUnix()
ArchLogUnix::ArchLogUnix()
{
// do nothing
}
CArchLogUnix::~CArchLogUnix()
ArchLogUnix::~ArchLogUnix()
{
// do nothing
}
void
CArchLogUnix::openLog(const char* name)
ArchLogUnix::openLog(const char* name)
{
openlog(name, 0, LOG_DAEMON);
}
void
CArchLogUnix::closeLog()
ArchLogUnix::closeLog()
{
closelog();
}
void
CArchLogUnix::showLog(bool)
ArchLogUnix::showLog(bool)
{
// do nothing
}
void
CArchLogUnix::writeLog(ELevel level, const char* msg)
ArchLogUnix::writeLog(ELevel level, const char* msg)
{
// convert level
int priority;