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

@@ -19,10 +19,10 @@
#include "server/BaseClientProxy.h"
//
// CBaseClientProxy
// BaseClientProxy
//
CBaseClientProxy::CBaseClientProxy(const CString& name) :
BaseClientProxy::BaseClientProxy(const String& name) :
m_name(name),
m_x(0),
m_y(0)
@@ -30,27 +30,27 @@ CBaseClientProxy::CBaseClientProxy(const CString& name) :
// do nothing
}
CBaseClientProxy::~CBaseClientProxy()
BaseClientProxy::~BaseClientProxy()
{
// do nothing
}
void
CBaseClientProxy::setJumpCursorPos(SInt32 x, SInt32 y)
BaseClientProxy::setJumpCursorPos(SInt32 x, SInt32 y)
{
m_x = x;
m_y = y;
}
void
CBaseClientProxy::getJumpCursorPos(SInt32& x, SInt32& y) const
BaseClientProxy::getJumpCursorPos(SInt32& x, SInt32& y) const
{
x = m_x;
y = m_y;
}
CString
CBaseClientProxy::getName() const
String
BaseClientProxy::getName() const
{
return m_name;
}