28 lines
452 B
C++
28 lines
452 B
C++
|
|
#include "Ruleset.hpp"
|
||
|
|
|
||
|
|
namespace BMapInspector::Ruleset {
|
||
|
|
|
||
|
|
#pragma region IRule
|
||
|
|
|
||
|
|
IRule::IRule() {}
|
||
|
|
|
||
|
|
IRule::~IRule() {}
|
||
|
|
|
||
|
|
#pragma endregion
|
||
|
|
|
||
|
|
#pragma region Rule Collection
|
||
|
|
|
||
|
|
RuleCollection::RuleCollection() : rules() {
|
||
|
|
// TODO: create instance for each rules.
|
||
|
|
}
|
||
|
|
|
||
|
|
RuleCollection::~RuleCollection() {}
|
||
|
|
|
||
|
|
const std::vector<IRule*>& RuleCollection::GetRules() const {
|
||
|
|
return this->rules;
|
||
|
|
}
|
||
|
|
|
||
|
|
#pragma endregion
|
||
|
|
|
||
|
|
} // namespace BMapInspector::Ruleset
|