1 2 3 4 5 6 7 8 9 10 11 12 13 14
#pragma once class LevelRuleset; class LevelRules { public: LevelRules(); void addLevelRule(const wstring &displayName, PBYTE pbData, DWORD dwLen); void addLevelRule(const wstring &displayName, LevelRuleset *rootRule); void removeLevelRule(LevelRuleset *removing); };