Remove "C" prefix in class names

This commit is contained in:
Birunthan Mohanathas
2013-05-31 17:18:52 +03:00
parent 4332cea3d0
commit da9384cfad
126 changed files with 2114 additions and 2116 deletions

View File

@ -22,15 +22,15 @@
#include <string>
#include <unordered_set>
class __declspec(novtable) CGroup
class __declspec(novtable) Group
{
public:
virtual ~CGroup() {}
virtual ~Group() {}
bool BelongsToGroup(const std::wstring& group) const;
protected:
CGroup() {}
Group() {}
void InitializeGroup(const std::wstring& groups);