summaryrefslogtreecommitdiff
path: root/project2/common/paramChecker.cpp
blob: ad61b3a6d2d28ff0da4c8f549e656b8fe06e2106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <pch.hpp>
#include "paramChecker.h"
#include "xmlObjectLoader.h"

ParamChecker::ParamChecker(const xmlpp::Element * p) :
	SourceObject(p),
	message(p, "message", false, "Check failed"),
	group(p, "group", false, "default"),
	present(p, "present", false, "")
{
}

ParamChecker::~ParamChecker()
{
}