summaryrefslogtreecommitdiff
path: root/project2/common/paramChecker.cpp
blob: 0781e90482d447e79a7f7064e6daf098b9c09abd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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->get_attribute_value("present"))
{
}

ParamChecker::~ParamChecker()
{
}