Code cleanup & cosmetics: Moved Measure/Meter shared part to Section.h

This commit is contained in:
spx
2012-08-09 06:50:58 -07:00
parent 5103190129
commit 489f2c5a30
10 changed files with 82 additions and 62 deletions

View File

@ -25,16 +25,17 @@
class CGroup
{
public:
bool BelongsToGroup(const std::wstring& group);
virtual ~CGroup() {}
bool BelongsToGroup(const std::wstring& group) const;
protected:
CGroup() {}
virtual ~CGroup() {}
void InitializeGroup(const std::wstring& groups);
private:
std::wstring CreateGroup(const std::wstring& str);
std::wstring CreateGroup(const std::wstring& str) const;
std::unordered_set<std::wstring> m_Groups;
std::wstring m_OldGroups;